Factor is a concatenative programming language that was influenced by Forth, Joy and Lisp.

learn more… | top users | synonyms

0
votes
1answer
18 views

Pandas: process cell dependencies

I'm new to Pandas so please bear with me; I have a dataframe A: one two three 0 1 5 9 1 2 6 10 2 3 7 11 3 4 8 12 And a dataframe B, which represents ...
0
votes
1answer
35 views

convert a matrix of integers to a column factored matrix with integer values

I have a matrix , all the entries are integers. and the values in columns are discrete. Therefore I want to store them as factors. I have converted each column to factors. But the type of entries now ...
0
votes
2answers
32 views

Dichotomize data by factor

I'm an R newbie, and I've struggled to create a dichtomized variable based on two factors (one hopes it's possible). Let's say I have the data: d <- data.frame ( agegroup = ...
-1
votes
1answer
42 views

how to tell big.matrix to treat certain columns as vectors

I have a big data set that includes character variables of many different values. I'm trying to read the data as big.matrix and then use biglm.big.matrix to build linear models. However, since ...
0
votes
3answers
63 views

How to convert factor format to numeric format in R without changing the values? [duplicate]

Below is dataframe df1 of which I want to convert column "V2" from factor format to numeric without changing the current values (0 ; 0 ; 8,5 ; 3). df1= V1 V2 V3 X2 X3 4470 ...
0
votes
1answer
32 views

Search for specific interactions of the levels of two factors in R

I am looking for a way to search for a specific form of interaction between the levels of the factors constituting the rows of a dataframe. I have a dataframe, such as this one, in which each column ...
1
vote
3answers
63 views

how to convert rows into factors in R?

For example, I have a matrix: > a = cbind(sample(c(0,1),6,replace=T), sample(c(0,1),6,replace=T)) > a [,1] [,2] [1,] 0 0 [2,] 0 0 [3,] 0 1 [4,] 1 0 [5,] 1 0 ...
0
votes
0answers
32 views

Error replacing a “NA” value in the workframe

Whenever I try to assign a value (mean) to a specific location in my workframe, to replace a "NA" R gives me: Warning message: In [<-.factor(*tmp*, iseq, value = 40.7392573981055) : invalid ...
0
votes
2answers
49 views

Read data frame of factors (in R)

I am a novice to R. To use in a package I need a "data frame of factors". I have a text file of form: A B C ... 1 3 2 2 2 3 3 1 1 2 2 1 3 1 2 So each column represents a variable that can be 1, 2 ...
0
votes
1answer
47 views

Using do.call factor to scale - resetting value error

This is an extension of the question that I asked here: Getting Factor Means into the dataset after calculation Now that I have basically normalized all of the stats that I am interested in using I ...
1
vote
1answer
50 views

Getting Factor Means into the dataset after calculation

I am trying to create a normalization value for a variable I am working with based on individual conference means and SDs. I found the conference means using the function: confavg=aggregate(base$AVG, ...
0
votes
2answers
100 views

Prime Factor Constructor

I am making a two classes, the constructing class and the main method where I read a number from a user input and spits out the prime factorizations of the number, code is with java. For Example: ...
1
vote
3answers
122 views

R subsetting a data frame based on a factor variable formatted like a range (xx-xx)

I am facing this problem for many hours now, but I know I am missing something obvious. Here is my problem: I have a data-frame in .xlsx file that can be downloaded here: ...
2
votes
1answer
50 views

R: factor levels, recode rest to 'other'

I use factors somewhat infrequently and generally find them comprehensible, but I often am fuzzy about the details for specific operations. Currently, I am coding/collapsing categories with few ...
1
vote
0answers
120 views

R Error: subscript out of bounds with by() nested with kappam.fleiss()

I have a dataframe in which I want to compute interrater agreement (Fleiss Kappa) for multiple raters on multiple levels of my factor, "form." When I run my code, I get the following error: ...
0
votes
1answer
35 views

Exception in thread “main” java.lang.ArithmeticException: / by zero - finding factors

this method takes in an int - however I keep getting an error message, does anyone know why? //finds the factors of a number that was entered public void findFactors(int t) { ...
6
votes
2answers
193 views

R ggplot empty factor level

I am trying to draw a box and whisker plot in R. My code is below. At the moment, because I only have data for two months in one of the two sites, the bars are wider for that site (because the third ...
0
votes
1answer
42 views

count factors in R build on BAZ

I have a similar question to what Baz asked a while back counting unique factors in r, however the solutions provided do not work for my data. My data is organised by drug, with pateint information ...
0
votes
1answer
52 views

Java beginner: product and factors of multiple values

I'm on the same assignment as the ill-asked question here and I was hoping for some specific help. I've searched the forum and didn't find an answer, sorry in advance if this post suffers from poor ...
0
votes
0answers
160 views

How to flip axis of a horizontal barplot in ggplot2

I am creating a horizontal barplot using a factor variable (and an associated numerical variable) in ggplot. When plotted vertically, I was able to reorder the factor variable so that the plot ...
1
vote
1answer
39 views

how to determine a rational is square free?

We know that if $μ(n)=0$ then the integer n has at least one factor with multiplicity. Now how can we determine if in the decomposition of a rational (m/n)>1 to prime factors, we have a power less ...
-1
votes
3answers
112 views

Converting a categorical variable to factor 0 or 1 [closed]

I am new to R so this might be rudimentary but I have been struggling with it. I have a column with a categorical variable of gender and the values are "female" and "male". I want to change it so ...
3
votes
1answer
71 views

R large data frame with factors won't shrink when subset [duplicate]

I have a large-ish data frame (100k Row x 50 Col) with several factor variables. I want a small subset (like 100 rows) to do some prototyping with. The problem is when I type : train <- ...
1
vote
0answers
138 views

For what classes of programs are prefix and postfix notation ideal? [closed]

Most concatenative programming languages use postfix notation. However Om, another concatenative programming language, use prefix notation. While reading the documentation of Om I found a list of ...
1
vote
3answers
60 views

How to create a new factor based on a current factor

In R, I am trying to do is create a factor by "grouping" values in another factor or character string. factor1 <- as.factor(c("A","B","C","D")) what I would like is to create a factor2 such ...
0
votes
1answer
77 views

Extracting factor labels from table result for use as data frame column

I am doing clickstream logfile summaries with raw row input format UID=character, Win/Lose=Boolean. The output summary I want to create is of form row UID, sumWin, sumLose. I have used table to get ...
1
vote
1answer
77 views

Use qplot to draw only one subset of data

I have a list named d like this: V1 is an integer set from 0 - 50 V2 is a real set from 1500 - 1800 V3 is an integer set from 1 - 50 In total, the list contains 5100 objects Now I would like to ...
0
votes
1answer
97 views

Can someone check my Code for #3 of Project Euler? [closed]

So i was just wondering if you could tell me why my code for Problem 3 of Project Euler isn't working. I am programming in python. The question is to find the largest prime factor of the number with ...
0
votes
0answers
32 views

How to call a constructed quotation in Factor

I have a word which constructs a quotation which I want to be called. However, when I load the code I get Cannot apply “call” to a run-time computed value. If I use the walker and step thru the code ...
-3
votes
2answers
238 views

Carmichael Number algorithm [closed]

What is wrong in my code? The algorithm or the code itself? It must test whether a number is a Carmichael number or not. A Carmichael number is a number which is not prime but has 3 or more factors; ...
1
vote
0answers
63 views

choice of scaling factor in CUFFT

when ever i am plotting the values obtained by the programe using CUFFT and comparing the results with that of matlab,i am getting the same shape of graphs and values of maxima and minima are getting ...
0
votes
3answers
141 views

Ignoring one of the factors of ggplot in R

I use ggplot to plot my variable and attributes. I am using ggplot and factor by using the following code: require(ggplot2) require(reshape2) df <- data.frame(HMn25_30$avg,HMn25_30$h) df[3] = c( ...
1
vote
1answer
98 views

Recoding dummy variable to ordered factor

new R user here, first time posting on this site. I need some help with coding factors for a logistic regression. What I have are six dummy variables representing income brackets. I want to ...
2
votes
3answers
126 views

drop = TRUE doesn't drop factor levels in data.frame while in vector it does

There is an interesting option drop = TRUE in data.frame filtering, see excerpt from help('[.data.frame'): Usage S3 method for class 'data.frame' x[i, j, drop = ] But when I try it on ...
0
votes
0answers
98 views

Calculating Scale Factor between Two Vectors

I am building a program that will convert between two different 3D skeletal animation file formats. The first type has the skeleton defined in the file, the type it will be converted to must be tied ...
0
votes
0answers
169 views

Factor Analysis with Varimax Rotation on R to get same result as in SPSS [closed]

When I do Factor Analysis (method of extraction Principal Components and type of rotaion Varimax) on either Minitab or SPSS, I get identical results. When I did the same on R using Rcmdr I did not get ...
0
votes
1answer
125 views

Finding the number of each factor per column in R

I am trying to write code that will allow me to find the number of each factor per column in R with the restriction that I want the factor levels to be the same in each column. I thought this should ...
5
votes
2answers
257 views

concatenating rows of a data frame

I would like to take a data frame with characters and numbers, and concatenate all of the elements of the each row into a single string, which would be stored as a single element in a vector. As an ...
-4
votes
2answers
469 views

How do I write a Java program that calculates the factors of a number? [closed]

I need help thinking up a formula for finding the factors of a number: Write a method named printFactors that accepts an integer as its parameter and uses a fencepost loop to print the factors ...
1
vote
0answers
178 views

Error: L-BFGS-B needs finite values of 'fn'

I have a correlation matrix and when I try to run a maximum-likelihood factor analysis on it using the "factanal" function I get the following error: > factanal(covmat=matches_adjusted, factors=5, ...
2
votes
1answer
122 views

How do I drop a factor level with no observations? [duplicate]

Possible Duplicate: dropping factor levels in a subsetted data frame in R I have a data frame with several variables that I'm running a mixed model on using lme(). One of the variables, ...
3
votes
3answers
105 views

LOCF by factors in data frame

I have the following data frame (simplified) with the country variable as a factor and the value variable has missing values: country value AUT NA AUT 5 AUT NA AUT NA GER NA GER ...
2
votes
1answer
56 views

replace in one factor by another factor (inside dataframe)

I have two factors and they do not have the same number of levels, but I would like to use one factor to replace values in the other factor inside a data-frame based on the name and the order of the ...
0
votes
1answer
117 views

Exclude one factor level interaction calculation in R : lme4

I am making mixed models, using lme4, which included three factors (S,M,R) with 2,3 and 4 levels. But I am missing observations for S3:M2:R1, so I am not able to check for the 3-way interaction. Is ...
1
vote
1answer
473 views

Error: Continuous value supplied to discrete scale with factor

I got this data.frame 'data.frame': 935 obs. of 17 variables: $ IQ : num 93 119 108 96 74 116 91 114 111 95 ... $ KWW : num 35 41 46 32 27 43 24 50 37 44 ... $ educ : num ...
1
vote
1answer
77 views

tapply with an ordered factor

When a factor level is missing you can use table in the following way: marks <- c(1,5,3,4,5,6) table(ordered(marks,levels=1:6)) which will return a table with level "2" listed with zero ...
0
votes
1answer
66 views

Program isn't calculating factors correctly and inputting into array

I'm having issues with the testPerfect method. I need it to calculate the factors and put them into the array, then return a boolean value of true or false if the number is perfect or not. As of now ...
0
votes
1answer
58 views

How to call the factor level of a variable for each observation, and use those values to create a new variable in R?

I have a dataset with a categorical variable "hospital_code" which has 10 levels. The program that I am running loops through and takes a subset of the data such that the variable "compLbl" ...
2
votes
0answers
186 views

Factor vs. ordered factor?

Here is the problem that I'm trying to solve. I'm using burn dataset from KMsurv library and I'm trying to fit a simple survival model with two simple covariates. One of these predictors is an ordered ...
2
votes
2answers
82 views

How to tabulate sums of factors from a dataframe, keeping labels

I have a dataframe of 11 variables x 60 rows; the entries are two-valued factor ('Male'/'Female') and contain NAs. (Each row is a single household, wih up to 11 members. Hence the column names ...

1 2 3 4