NA is a missing value indicator (Not Available) in the R language.
0
votes
0answers
5 views
replacing data frame values with NA in r
I have a large data frame that consists of 38 variables and over 10000 observations for each variable. How can I select a certain variable and replace specific values with NA. For example, if I have ...
1
vote
3answers
56 views
table() generating NAs when there are no NAs in the underlying data
Just a quick question:
I want to generate a column of counts of a particular variable. The easiest way seems to be using table(). For reasonably small amounts of data, there seems to be no problem.
...
1
vote
0answers
11 views
R: Should I assign NULL or NA
I am looking for some advice on the use of NULL and NA in my data set. Very specifically, I have fishery data from independent observers. The data consists of patrol information with variables such as ...
-2
votes
1answer
49 views
ggplot + r panel data too much data in graph + interactive points + selecting specific variables
i have some questions if anyone can help.
I have a panel data such as, example:
Country Name Year GDP PPP HHH
USA 1960 7 9 10
Uk 1960 9 10 ...
2
votes
1answer
35 views
Matrix multiplication with scattered NA values
I'm looking to multiply two matrices together in R, one of which may contain randomly placed NA values (i.e., there's no reason they will be all in a row or column), but I still want an output like ...
0
votes
2answers
40 views
How to change na.action for zero-inflated regression model?
I am running a zero-inflated negative binomial regression model using the function zeroinfl from the pscl package.
I need to exclude NA's from the model in order to be able to plot the residuals ...
0
votes
1answer
11 views
R Raster package, substitute
I'm trying to reclassify a RasterLayer to turn all 0's to NA. I've tried (1) Reclassify, (2) Subs, and (3) replace NA statements below:
Method, error
con1RC<-reclassify(con2, matrix(c(0, 0, NA))
...
1
vote
1answer
45 views
txt file produces NA in R package tm (textmining)
I would like to read a txt file and do some text mining approaches. When I used the tm package in R, I got lots of error messages. For example, If I wanted to correlate the most frequent words, I got ...
0
votes
1answer
51 views
R: Selecting multiple colums in is.na
I would like to use the !is.na command to remove rows partially containing NAs:
table=data.frame(col1=c(1:2,NA,4,NA,4),col2=c(7:9,NA,NA,NA),col3=c(2:4,NA,NA,4),col4=c(1:6))
col1 col2 col3 col 4
1 ...
1
vote
1answer
52 views
Overriding in-built is.na function
As a follow-up of my previous question - Unexpected behaviour using na.rm, I am looking for a workaround with minimal changes to my (large) code base.
I tried this, which works, but
my.is.na <- ...
2
votes
2answers
55 views
Unexpected behaviour using na.rm
This reproducible example is a very simplified version of my code:
x <- c(NaN, 2, 3)
#This is fine, as expected
max(x)
> NaN
#Why does na.rm remove NaN?
max(x, na.rm=TRUE)
> 3
To me, NA ...
0
votes
3answers
102 views
How to delete columns with NA in R?
I have a data.frame containing some columns with all NA values, how can I delete them from the data.frame.
Can I use the function
na.omit(...)
specifying some additional arguments?
2
votes
0answers
30 views
Removing NA in data table for one way ANOVA
I'm currently working on a project for school where I need to run a one way ANOVA on the %uninsured motorists from each state divided by region. I'm trying to remove the NA from the table, but am ...
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
0answers
16 views
removing duplicate values from a single column for a value in a seond column
In r I have tried to remove duplicated values from a column specifying in which instances to make it NA
so after trying the duplicate functions
I tried to allocate the extra values NA for all other ...
0
votes
3answers
152 views
Remove NA/NaN/Inf in a matrix
I want to try two things :
1) How do I remove rows that contain NA/NaN/Inf
2) How do I set value of data point from NA/NaN/Inf to 0.
So far, I have tried using the following for NA values, but been ...
3
votes
1answer
61 views
How to ignore code when data does not contain necessary values?
I'm very new to R and here as well and need some help fixing my code because sometimes my data gets weird
So I have data similar to this
Random Price
11.23 0.68
66.77 0.51
68 0.46
78 0.51
88 ...
0
votes
4answers
88 views
Removing/ignoring NA values in an if loop
So I have this simple if loop
chick<-lapply(1:length(t),function(i){
if(t[[i]]<0.01){
chick=1
}else 0
})
So basically when t<0.01 it print outs 1 if not it prints 0 but there are times ...
2
votes
0answers
73 views
formula.update with function containing NA as argument value does not work
EDIT: I Made a bit simpler example of the same situation:
I'm trying to remove one term corresponding to function fn from the model formula.
f<-formula(y~x+fn(z=1))
update(f,.~.-fn(z=1)) #remove ...
0
votes
1answer
46 views
Replace NA in column with value in adjacent column
This question is related to a post with a similar title (replace NA in an R vector with adjacent values). I would like to scan a column in a data frame and replace NA's with the value in the adjacent ...
0
votes
2answers
60 views
replace values with NA in R
I have a character vector that looks like:
"Internet" "Internet" "-1" "-5" "Internet" "Internet"
I want to replace all values that would be negative numeric values (-1, -5, etc)
with ...
-1
votes
1answer
53 views
Why some functions do not ignore null values in R?
I have a time series of daily returns. Observations for which no data were available have value NaN.
Trying to apply functions such as StdDev from the PerformanceAnalytics package the function ...
0
votes
0answers
50 views
Rpart - NA handling
I am struggling with the NA functionality in the Rpart package. I got the following dataframe (code per below)
Outcome VarA VarB
1 1 1 0
2 1 1 1
3 1 NA 1
4 ...
1
vote
1answer
62 views
How to deal with NA when using cut()?
I have two binary files with (1440*720) the same dimensions: I want to take the average of my first file based on the the second file values (intervals),the values of this file range from 1 to 7. ...
0
votes
0answers
68 views
Replacing NA values with zero in fit of R language output
The following R code is working perfectly, when fit, it returns proper values:
CS14 <- ifelse( is.na(coef(summary(fit))["S14","Estimate"]) , 0, coef(summary(fit))["S14","Estimate"] )
PS14 <- ...
4
votes
2answers
132 views
linear model when all occurences of independent variables are NA
I'm looking for suggestions on how to deal with NA's in linear regressions when all occurrences of an independent/explanatory variable are NA (i.e. x3 below).
I know the obvious solution would be to ...
0
votes
2answers
113 views
Can you use rbind.fill without having it fill in NA's?
I am trying to combine two dataframes with different number of columns and column headers. However, after I combine them using rbind.fill(), the resulting file has filled the empty cells with NA.
...
0
votes
2answers
60 views
What's wrong with my survival object? [closed]
I have a survival object in R.
print(surv) gives me
> print(surv)
Call: survfit(formula = Surv(TAGE, EVENT) ~ 1, data = data_LTC[data_LTC$TYPE ==
"Job", ])
records n.max n.start events ...
1
vote
1answer
116 views
Replace NA's in R - works in a practice dataset but warning message when applied to actual data
I have a dataset in R which looks like, and has been reshaped in the same way as, the following example. The aim is to turn NA values in to something else (e.g. "FALSE" or "0") which can then be used ...
3
votes
2answers
81 views
Conditional row removal based on number of NA's within the row
I am looking to remove rows from my dataset based on 2 conditions as follows:
remove row if 3 consecutive cells are "NA"
or
if 4 or more cells are "NA"
My sample data:
data <- ...
1
vote
3answers
92 views
Convert first element of each factor to NA in R
I have a dataframe simplified as following:
Day Place dendrometer max
1 1 1 4684
2 1 1 4831
1 1 2 2486
2 1 2 2596
1 2 1 6987
2 2 1 ...
0
votes
1answer
48 views
Replace value in element class zoo
I have two time series of the same length of class zoo. One of them as NA value for some dates while the other one is completely filled by value. Since I need to plot some pie charts, I would need to ...
2
votes
2answers
84 views
Treat NA as zero only when adding a number
When calculating the sum of two data tables, NA+n=NA.
> dt1 <- data.table(Name=c("Joe","Ann"), "1"=c(0,NA), "2"=c(3,NA))
> dt1
Name 1 2
1: Joe 0 3
2: Ann NA NA
> dt2 <- ...
-2
votes
1answer
112 views
R programming ignoring/removing NA values
So I have data imported to r using data=read.delim("clipboard")
This is the last sections of the data....so I decided to use data2=na.omit(data,method="linear") which gave me this result...
But as ...
3
votes
1answer
121 views
R programming transfering data from excel with missing values to R
So I have an excel spreadsheet with NA values....What is the best way to copy the data and put it in R...I usually use data=read.delim("clipboard").... But because of those missing values....I keep ...
5
votes
2answers
85 views
How to avoid warning when introducing NAs by coercion
I generally prefer to code R so that I don't get warnings, but I don't know how to avoid getting a warning when using as.numeric to convert a character vector.
For example:
x <- as.numeric(c("1", ...
1
vote
2answers
80 views
!is.na creates NAs in other columns
In the midst of merging several data sets, I'm trying to remove all rows of a data frame that have a missing value for one particular variable (I want to keep the NAs in some of the other columns for ...
2
votes
1answer
88 views
“undefined columns selected” - when trying to remove na's from df's in list
I am trying to replicate the success of this solution:
remove columns with NAs from all dataframes in list
or
Remove columns from dataframe where some of values are NA
with a list of dataframes:
...
1
vote
6answers
81 views
Replace row of NAs with previous row in R
I was wondering if anyone had a quick and dirty solution to the following problem, I have a matrix that has rows of NAs and I would like to replace the rows of NAs with the previous row (if it is not ...
3
votes
2answers
52 views
How to handle conditional data.frame subscripts that contain NAs?
Is there a way to have conditional subscripts if the conditional vector contains NAs?
Assume i have a data.frame like this
dframe <- data.frame(a=c(1,32,4,5,8),b=c(1,2,3,4,5),d=c(NA,5,5,10,9))
...
0
votes
3answers
192 views
R gbm handling of missing values
Does anyone know how gbm in R handles missing values? I can't seem to find any explanation using google.
-1
votes
1answer
70 views
dataframe where one column only has na values ommited
I have a data frame "accdata".
dim(accdata)
[1] 6496 188
One of the variables - "VAL" is of interest to me. I must calculate the number of instances where VAL is equal to 24.
I tried a few ...
8
votes
3answers
86 views
Replace NAs by simulating data
In a vector containing blocks of numbers and blocks of NAs, such as:
score <- c(0,1,2,3,4,NA,NA,0,-1,0,1,2,NA,NA,NA)
is there a way to simulate missing values by counting upwards in steps of one ...
4
votes
4answers
101 views
Combine column to remove NA's
I have some columns in R and for each row there will only ever be a value in one of them, the rest will be NA's. I want to combine these into one column with the non-NA value. Does anyone know of an ...
3
votes
1answer
129 views
adding na.rm to sapply when calculating median
I have created a dataframe "killers" with 3 variables. The data are numeric though there exist NA values throughout.
My goal is to calculate the mean on each of the 3 variables.
sapply(killers, ...
3
votes
1answer
183 views
How to deal with NA in a panel data regression?
I am trying to predict fitted values over data containing NAs, and based on a model generated by plm. Here's some sample code:
require(plm)
test.data <- data.frame(id=c(1,1,2,2,3), ...
0
votes
0answers
175 views
Subsetting R data frame results in mysterious NA rows
I've been encountering what I think is a bug. It's not a big deal, but I'm curious if anyone else has seen this. Unfortunately, my data is confidential, so I have to make up an example, and it's not ...
2
votes
1answer
664 views
Remove #N/A in vlookup result
How do I modify this function so that the result will merely be a blank cell rather than having #N/A show up if B2 has nothing in that cell?
I think I might need something like an ISERROR check but I ...
0
votes
1answer
125 views
read.table is returning a single column of “NA” characters under the heading ��D
I have encountered a very strange problem when trying to read a table of data into R using the read.table function. Rather than the actual data being read, I get a single column of NA characters under ...
0
votes
1answer
253 views
ezANOVA: 1) how to omit na data? 2) still getting error message after omitting na data?
For my repeated measures analysis using lme function I could omit not-available (na) data with the command: na.action=na.omit.
anova_lme_loc<-lme(data=rm1, fixed=Nmin~location*date, ...







