search for: removena

Displaying 4 results from an estimated 4 matches for "removena".

2010 Feb 03
2
Delete missing value rows from a matrix
Hi everyone, I have a matrix with many Na's. Some rows contain some Na's and some others are entirely composed of Na's. I want to delete the rows that are entirely composed of Na's but not the other ones so I can't use a simple removeNA. Has any one an idea? ----- Anna Lippel -- View this message in context: http://n4.nabble.com/Delete-missing-value-rows-from-a-matrix-tp1461305p1461305.html Sent from the R help mailing list archive at Nabble.com.
2017 Apr 07
2
problema con wb del paquete wbstats
...<- wb_cache_7_4_17$countries$iso3c[which(wb_cache_7_4_17$countries$region != "Aggregates")] >indicator_long_list <- ed_search$indicatorID >wb_data <- wb(indicator = indicator_long_list[1:4], country = country_list, startdate = 2005, enddate = 2015, cache = wb_cache_7_4_17, removeNA = F, lang="es") Warning message: In wb(indicator = indicator_long_list[1:4], country = country_list, : No data was returned for any requested country and indicator. Returning empty data frame Si yo disminuyo la cantidad de países, por ejemplo que solo sean 50, me descarga los datos....
2017 Apr 07
3
problema con wb del paquete wbstats
...che_7_4_17$countries$region != > > "Aggregates")] > > >indicator_long_list <- ed_search$indicatorID > > >wb_data <- wb(indicator = indicator_long_list[1:4], country = > > country_list, startdate = 2005, enddate = 2015, cache = wb_cache_7_4_17, > > removeNA = F, lang="es") > > Warning message: > > In wb(indicator = indicator_long_list[1:4], country = country_list, : > > No data was returned for any requested country and indicator. Returning > > empty data frame > > > > Si yo disminuyo la cantidad de paí...
2012 Jan 18
0
Time series questions
...cycle(gdp1) is not. My next question is with the NA in there for 2010q4. All of the (extremely basic still learning) time series functions I've been learning don't work. For example m <- decompose(gdp2) returns Error in na.omit.ts(x) : time series contains internal NAs I have tried removeNA(gdp2) and I get Error in na.omit.ts(x, ...) : time series contains internal NAs I have tried na.omit(gdp2) and I get Error in na.omit.ts(gdp2) : time series contains internal NAs Any insight you can share with why this is happening, whether putting the NA's in was a good idea at all (intuitiv...