Dear R Staff My working file is in the annex. "g1.csv" I have only 2 columns. Rice and coke. I try to execute following(below) function, but do not work. Because "Coke" value has NA values. I try to add "na.rm=True" to the function but do not work How can I solve this problem with this function or another algorithm? (Note: I have normally 450 columns) Sincerely Engin YILMAZ apply(g1, 2, function(c) sum(c==0)) Rice Coke 0 NA
na.rm=TRUE (you need to capitalize) On Fri, Oct 27, 2017 at 10:43 AM, Engin YILMAZ <ispanyolcom at gmail.com> wrote:> Dear R Staff > > My working file is in the annex. "g1.csv" > I have only 2 columns. Rice and coke. > I try to execute following(below) function, but do not work. > Because "Coke" value has NA values. > I try to add "na.rm=True" to the function but do not work > How can I solve this problem with this function or another algorithm? > (Note: I have normally 450 columns) > > Sincerely > Engin YILMAZ > > > apply(g1, 2, function(c) sum(c==0)) > > Rice Coke > 0 NA > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/ > posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
> On 27 Oct 2017, at 10:43, Engin YILMAZ <ispanyolcom at gmail.com> wrote: > > Dear R Staff > > My working file is in the annex. "g1.csv" > I have only 2 columns. Rice and coke. > I try to execute following(below) function, but do not work. > Because "Coke" value has NA values. > I try to add "na.rm=True" to the function but do not work > How can I solve this problem with this function or another algorithm? > (Note: I have normally 450 columns) > > Sincerely > Engin YILMAZ > > > apply(g1, 2, function(c) sum(c==0)) > > Rice Coke > 0 NAA simple reproduciple example always works, # create sample data df <- data.frame(a = round(runif(100) * 10), b = round(runif(100) * 10)) df[which(df[,2] == 2),2] <- NA # add NA to second column apply(df, 2, function(x) sum(x == 1, na.rm = TRUE))
Thanks SEZEN and BERGER Now it is working. My mistake <- I have written this statement (na.rm=TRUE) to the wrong location (after the sum expression) Thanks for your kindly responses Sincerely Engin YILMAZ 2017-10-27 10:57 GMT+03:00 Ismail SEZEN <sezenismail at gmail.com>:> > > On 27 Oct 2017, at 10:43, Engin YILMAZ <ispanyolcom at gmail.com> wrote: > > > > Dear R Staff > > > > My working file is in the annex. "g1.csv" > > I have only 2 columns. Rice and coke. > > I try to execute following(below) function, but do not work. > > Because "Coke" value has NA values. > > I try to add "na.rm=True" to the function but do not work > > How can I solve this problem with this function or another algorithm? > > (Note: I have normally 450 columns) > > > > Sincerely > > Engin YILMAZ > > > > > > apply(g1, 2, function(c) sum(c==0)) > > > > Rice Coke > > 0 NA > > A simple reproduciple example always works, > > # create sample data > df <- data.frame(a = round(runif(100) * 10), b = round(runif(100) * 10)) > df[which(df[,2] == 2),2] <- NA # add NA to second column > > apply(df, 2, function(x) sum(x == 1, na.rm = TRUE)) > > >-- *Sayg?lar?mla* Engin YILMAZ [[alternative HTML version deleted]]
Possibly Parallel Threads
- My function and NA Values Problem
- Scatterplot of many variables against a single variable
- Scatterplot of many variables against a single variable
- Scatterplot of many variables against a single variable
- Scatterplot of many variables against a single variable