Tagged Questions
Factor is a Concatenative programming language that was influenced by Forth, Joy and Lisp.
22
votes
6answers
2k views
Good resources for learning Factor
Having recently come across this introduction to Factor, I've been a bit curious to learn more. Aside from the official FAQ mentioned there, do you have resources for learning the language (as well as ...
18
votes
3answers
322 views
Why use a stack-oriented language?
I recently took a look at Factor, and the idea of having a language based around the concept of a stack is very interesting. (This was my first encounter with a stack-oriented language.) However, I ...
11
votes
6answers
854 views
Factors in R: more than an annoyance?
One of the basic data types in R is factors. In my experience factors are basically a pain in the ass and I never use them. I always convert to characters. I feel oddly like I'm missing something. Are ...
10
votes
7answers
784 views
Real world usage of concatenative programming langauges
What are some real-world projects done in concatenative languages like Forth, Factor, Joy, etc.?
10
votes
6answers
3k views
Do you plan on using the Factor programming language?
Do you plan on using Factor? Have you looked at it? Checked it out. Do you understand stack oriented programming?
http://www.youtube.com/watch?v=f_0QlhYlS8g
9
votes
6answers
1k views
Efficient storage of prime numbers
For a library, I need to store the first primes numbers up to a limit L. This collection must have a O(1) lookup time (to check whether a number is prime or not) and it must be easy, given a number, ...
9
votes
1answer
1k views
Which factor GUI tutorial/example app?
Is there a non-trivial example application written in Factor language, pregerrably for GUI application which could server as a language tutorial?
9
votes
5answers
2k views
Good resources to learn the Factor programming language?
What are some good resources to learn the Factor programming language?
I understand that Factor is based on Forth, so I guess resources on Forth would be nice too.
8
votes
5answers
122 views
How to create a factor from a binary indicator matrix?
Say I have the following matrix mat, which is a binary indicator matrix for the levels A, B, and C for a set of 5 observations:
mat <- matrix(c(1,0,0,
1,0,0,
0,1,0,
...
7
votes
1answer
436 views
R: Confusion between factor levels and factor labels
There seems to be a difference between levels and labels of a factor in R.
Up to now, I always thought that levels were the 'real' name of factor levels, and labels were the names used for output ...
7
votes
4answers
3k views
Reorder levels of a data frame without changing order of values
I have data frame with some numerical values and factors for groups, treatment etc. The order of levels for those factors is not the way I want them to be.
numbers = 1:4
letters = factor(c("a", "b", ...
6
votes
1answer
87 views
How to disable stringsAsFactors=TRUE in data.frame permenantly?
As title, frankly I am a bit sick of manually doing the adjustment all the time.
This should be a simple question, but I just can't figure out how to fix it. Thanks.
4
votes
2answers
554 views
Efficiently finding all divisors of a number
So I simply want to find all the divisors of a given number (excepting the number itself).
Currently, I have this:
public static List<int> proper_divisors(int x)
{
List<int> toreturn ...
4
votes
2answers
651 views
All Levels of a Factor in a Model Matrix in R
I have a data.frame consisting of numeric and factor variables as seen below.
testFrame <- data.frame(First=sample(1:10, 20, replace=T),
Second=sample(1:20, 20, replace=T), ...
4
votes
1answer
279 views
Fiddling with point-free code?
I have been learning the Factor and J languages to experiment with point-free programming. The basic mechanics of the languages seem clear, but getting a feeling for how to approach algorithm design ...
4
votes
2answers
317 views
Building a web application with Factor
Has anybody built a web application with Factor? What were some of the stumbling blocks or problems that you encountered during the process?
3
votes
3answers
30 views
Subset a factor by NA levels
I have a factor in R, with an NA level.
set.seed(1)
x <- sample(c(1, 2, NA), 25, replace=TRUE)
x <- factor(x, exclude = NULL)
> x
[1] 1 2 2 <NA> 1 <NA> <NA> ...
3
votes
3answers
128 views
How can i convert a factor column that contains decimal numbers to numeric?
I have a csv file and when i use this command
SOLK<-read.table('Book1.csv',header=TRUE,sep=';')
I get this output
> SOLK
Time Close Volume
1 10:27:03,6 0,99 1000
2 ...
3
votes
2answers
134 views
R Function for returning ALL factors
My normal search foo is failing me. I'm trying to find an R function that returns ALL of the factors of an integer. There are at least 2 packages with factorize() functions: gmp and conf.design, ...
3
votes
2answers
114 views
Why does `ann = F` not work when plotting with `as.factor` in R?
I am plotting a continuous variable against a factor using plot() in R (see example below). I do not want the labels on the axes. Without the as.factor call in the formula ann = F suppresses the ...
3
votes
2answers
168 views
R: remove data in a logical variable using a factor variable
I made the following example code to give you an idea of my real dataset. I have 2 datasets, a factor variable List and a logical variable ok.
df1 <- c("a","b","c","d","e","f","g")
df2 <- ...
3
votes
3answers
189 views
counting unique factors in r
I would like to know the number of unique dams gave birth on each birth dates recorded. My data rame is similar to this one:
dam <- c("2A11","2A11","2A12","2A12","2A12","4D23","4D23","1X23")
bdate ...
3
votes
2answers
352 views
unsplit list, merge factors in R
Hi I have the following data frame in R:
c1 c2
1 10 a
2 20 a
3 30 b
4 40 b
I then split it as follows: z = lapply(split(test$c1, test$c2), function(x) {cut(x,2)})
. z is then:
$a ...
3
votes
2answers
356 views
Lisp influence on on Factor programming language?
I have read (from Slava Pestov) that Factor was influenced by Lisp, but I am not sure that I can understand how? Are they not very difference programming languages?
3
votes
2answers
2k views
How (and why) do you use contrasts (in R)?
I am sorry for asking such a basic question, but I can't seem to put my head around this or find a satisfying answer.
I checked ?contrasts and ?C - both lead to "Chapter 2 of Statistical Models in ...
3
votes
4answers
1k views
Recode/relevel data.frame factors with different levels
Each time when I have to recode some set of variables, I have SPSS recode function in mind. I must admit that it's quite straightforward. There's a similar recode function in car package, and it does ...
3
votes
2answers
885 views
How to do median splits within factor levels in R?
Here I make a new column to indicate whether myData is above or below its median
### MedianSplits based on Whole Data
#create some test data
...
2
votes
2answers
69 views
R grouping data with factors and levels
Im quite new to R. I just working on a problem.
Im trying to make a frequency table.
Say I have the data
X<-c(1,2,3,4,3,9, 20)
and I want to make a frequency table such that it shows all ...
2
votes
3answers
60 views
Summarising Factors in Dataframe
My dataset is as below: http://dl.dropbox.com/u/822467/Data.csv
My situation is this. I have a series of questions (27 in all) where the response is binary in nature. 0=No, 1=Yes, 999=Missing.
My ...
2
votes
1answer
63 views
Idiomatic method of finding the median of an ordinal in R
I need to find the median of an ordinal (i.e. ordered factor) in R.
I couldn't find a method in the standard library to do this, so I came up with the following clunky solution:
ordinal.median <- ...
2
votes
1answer
86 views
Faster way to compile Factor Programs
I really love the Factor language. But I find that compiling programs written in it is incredibly slow, and thus it's not feasible to create real projects with Factor.
For example, compiling the ...
2
votes
3answers
238 views
Override [.data.frame to drop unused factor levels
The issue of dropping unused factor levels when subsetting has come up before. Common solutions include using character vectors where possible by declaring
options(stringsAsFactors = FALSE)
...
2
votes
2answers
173 views
How do I get discrete factor levels to be treated as continuous?
I have a data frame with columns initially labeled arbitrarily. Later on, I want to change these levels to numerical values. The following script illustrates the problem.
library(ggplot2)
...
2
votes
1answer
109 views
Arbitrarily re-ordering histogram columns in R
I would like to know how I can re-order the columns of a histogram in a way that makes sense to my data. This example illustrates what I'm trying to do.
I have this data in a file:
blue low
blue ...
2
votes
4answers
89 views
Converting big numbers to bigger factors in JavaScript
I have counter and sometimes it can get very big number, so I need to convert numbers like:
1300 => 1.3K
1000000 => 1M
And so on. How is this possible in JavaScript?
2
votes
2answers
2k views
Convert factor to integer
I am manipulating a data frame using the reshape package. When using the melt function, it factorizes my value column, which is a problem because a subset of those values are integers that I want to ...
2
votes
1answer
72 views
Keeping quotations as tuple members in Factor
I want to keep a quotation as a member of a tuple in Factor. But when I try to execute 'call' on it I get the error 'cannot apply call to a run-time computed value'. Note that marking the functions as ...
2
votes
4answers
1k views
fastest calculation of largest prime factor of 512 bit number in python
i am simulating my crypto scheme in python, i am a new user to it.
p = 512 bit number and i need to calculate largest prime factor for it, i am looking for two things:
Fastest code to process this ...
2
votes
1answer
288 views
Why is as.factor returns a character when used inside apply?
I tried doing this:
a <- data.frame(x1 = rnorm(100), x2 = sample(c("a","b"), 100, replace = T), x3 = factor(c(rep("a",50) , rep("b",50))))
apply(a2, 2,class) # why is column 3 not a factor ?
a
a2 ...
1
vote
3answers
71 views
Use array result as multiplier for the original data frame
for a given data frame I would like to multiply values of an array to a column of the data frame. The data frame consists of rows, containing a name, a numerical value and two factor values:
name ...
1
vote
2answers
82 views
(C++) Specific values in an array
I'm not sure how to title my question, but here goes. I am testing some features, and I have hit a snag.
What I want to know is how can I set up a "for" or "if" statement to only put values in an ...
1
vote
3answers
93 views
grouping dataframe rows by factor and by function - output complete original dataframe row
My first post and I'm very new to R so this may be a lob. I have search all over for a solution though, so I'm finally posting for help. Let me know if I need to clarify or provide more information.
...
1
vote
1answer
153 views
ggplot without the use of subset
I'm using ggplot2 with the faceting option to plot several results of a data.frame.
It's a data.frame with three factors :
participant (N) with 6 levels;
condition (C) with 6 levels;
stimuli (S) ...
1
vote
3answers
74 views
use of mathematical annotation as factor in R
I refer to my previous question, and want to know more about characteristics of factor in R.
Let say I have a dataset like this:
temp <- data.frame(x=letters[1:5],
y=1:5)
...
1
vote
1answer
41 views
Importing Factor code without putting it in the work directory?
I like version controlling my code. It would be a pain to copy every Factor file from my git over to Factor's work directory and back.
Does Factor have an import command that works like Ruby's ...
1
vote
1answer
36 views
How do I import modules in the Factor interpreter?
I'm following the Sam's decipher tutorial. When he does 8 group, on my computer Factor gripes that it doesn't know the group function.
( scratchpad ) ...
1
vote
0answers
39 views
MDP FANode issues
I'm trying to perform factorial analysis on a distance matrix (made of distances between about 1700 points, all ranging between 0.0 and 1.0, inclusively). I'm a total FA newbie.
Anyways, this code:
...
1
vote
2answers
353 views
How to change order of boxplots when using ggplot2?
This question follows from this other one. I was unable to implement answers there.
Define:
df2 <- data.frame(variable=rep(c("vnu.shr","vph.shr"),each=10),
value=seq(1:20))
Plot:
...
1
vote
3answers
181 views
How to change a column type from numeric to factor in an R dataframe
I have an R dataframe with one column containing a stringt of numbers but I would like to treat them as a factor (mainly to stop R shortening the numbers using e+04 etc...). One way I have found to ...
1
vote
1answer
121 views
Preserve ordered factor when using ddply
I use ddply a lot. I use ordered factors occasionally. Calling ddply on a data frame that contains an ordered factor drops any ordering in the recombined data frame.
I wrote the following wrapper for ...