Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
170 views

Creating a function to replace NAs from one data.frame with values from another

I regularly have situations where I need to replace missing values from a data.frame with values from some other data.frame that is at a different level of aggregation. So, for example, if I have a ...
6
votes
1answer
188 views

How do I specify different color ranges for different levels?

I am making a lattice levelplot from x and y factors that range from [0,1]: x y level ...
4
votes
2answers
60 views

Differences between vectors _including_ NA

Suppose I have a vector x<-c(1,2,NA,4,5,NA). I apply some mythological code to that vector, which results in another vector, y<-c(1,NA,3, 4,10,NA) Now I wish to find out at which positions my ...
3
votes
2answers
49 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
2answers
217 views

How do I replace NA values with zeros in R?

I have a data.frame and some columns have NA values. I want to replace the NAs with zeros. How I do this?
3
votes
2answers
230 views

Subset of rows containing NA values in a chosen column of a data frame

We have a data frame from a csv-file. The data frame DF has columns that contain observed values and a column (VaR2) that contains the date at which a measurement has been taken. If the date was not ...
3
votes
1answer
41 views

identify start and end terms of NA sections

Let's say I have some data in R that looks like this: c(0.11, NA, NA, NA, 2.76, 3.65, NA, NA, NA, NA, 1.56) How might I efficiently extract the start and end terms of each "block" of NA values? If ...
2
votes
3answers
96 views

R is there a way to find Inf/-Inf values?

I'm trying to run a randomForest on a large-ish data set (5000x300). Unfortunately I'm getting an error message as follows: > RF <- randomForest(prePrior1, postPrior1[,6] + ...
2
votes
1answer
63 views

Identifying and removing “NA”s and other errors

Suppose you have a vector -- you do a calculation on the vector -- many of the elements return "NA" -- how do you identify these "NA"s and change them to some usable integer
1
vote
1answer
59 views

How to replace NA with mean by subset in R (impute with plyr?)

I have a dataframe with the lengths and widths of various arthropods from the guts of salamanders. Because some guts had thousands of certain prey items, I only measured a subset of each prey type. I ...
1
vote
0answers
26 views

PyUnicodeUCS4_FromEncodedObject Error

ImportError: /usr/lib/python2.3/site-packages/rhpl/_pjac.so: undefined symbol: PyUnicodeUCS4_FromEncodedObject am using the python version 2.7 Well, all apps dont produce same error but similar ...
1
vote
1answer
192 views

Test for NA and select values based on result

My question is rather simple. What I want is if A[i]!=NA, then C[i]=A[i], if A[i]=NA, then C[i]=B[i], however, I always get some error messages. Can somebody help me out? A B C NA 82.6 . NA ...
0
votes
0answers
7 views

Splus displaying NA as blank

all I am a novice with Splus. I have question regarding displaying (just, displaying) #N/A as blank. I know I can replace "N/A" with "" as blank, but that would lose its numeric data frame ...