Tagged Questions
11
votes
6answers
855 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 ...
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
652 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), ...
3
votes
2answers
31 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
129 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
190 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
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
3answers
239 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
174 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
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
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
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
2answers
354 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 ...
1
vote
1answer
105 views
How to generate a random treatment variable by factor?
Define
x <- data.frame(
ID=letters[1:10],
class = as.factor(c(rep(1,5),rep(2,5))),
treat = rep(0,10))
s.t.
> x
ID class treat
1 a 1 0
2 b 1 0
3 c ...
1
vote
1answer
184 views
stats::reorder vs Hmisc::reorder
I am trying to get around the strange overlap of stats::reorder vs Hmisc::reorder.
Without Hmisc loaded I get the result I want, i.e. an unordered factor:
> with(InsectSprays, reorder(spray, ...
0
votes
2answers
79 views
Factor, levels, and original values
I would like to write variable f into certain elements (index) of an existing matrix m. Let's assume f is a factor:
f <- factor(c(3,3,0,3,0))
m <- matrix(NA, 10, 1)
index <- c(1,4,5,8,9)
...
0
votes
4answers
114 views
Colouring plot by factor in R
I am making a scatter plot of two variables and would like to colour the points by a factor variable. Here is some reproducible code:
data<-iris
plot(data$Sepal.Length, data$Sepal.Width, ...
0
votes
1answer
82 views
Converting a factor to numeric without losing information R (as.numeric() doesn't seem to work) [closed]
Possible Duplicate:
R - How to convert a factor to an integer\numeric in R without a loss of information
The following fact about the as.numeric() function has been brought to my attention
...
0
votes
1answer
74 views
make duplicate levels unique in r
I have to extract data for each individual from one large file based on a date/time window from another file. I have ID, Start, End date as my window file and a huge file (FULLDATA) with all sorts of ...
0
votes
1answer
50 views
R-Graphs: Axis Problem (exclude non-relevant values)
have something alike. I have a dataset with 22000 values and want to show them in a proper way (with my data: a graph for every river with the fish species cought in this river on the y-axis and the ...
0
votes
1answer
100 views
Inserting factor values into an R matrix
Hello advanced programmers,
I have a matrix of the form
arkhansas 15 16 17
newyork 56 45 30
where column 1 are factors and columns 2:4 are integers.
I'm stuck trying to generate a matrix with the ...
0
votes
2answers
273 views
changing factors to numeric - how to cope with unavailable values
I have a big data set from a questionary. Importing it from SPSS to R (using SPSS's Stata-Output) gave me the answer to each question as factor.
A question has answers from 1 to 10. However, there ...
0
votes
2answers
121 views
R: quoting unquoted members in nested list-
Using R, I generate a list that contains certain unquoted elements. Please see at the bottom- it is invalid javascript code.
R code (does not work)
outq <- lapply (out, function (el){
el <- ...
0
votes
4answers
325 views
Renaming large IDs in R
Suppose I have a data.frame with N rows. The id column has 10 unique values; all those values are integers greater than 1e7. I would like to rename them to be numbered 1 through 10 and save these ...