Displaying 20 results from an estimated 6000 matches similar to: "extracting columns with NA's"
2004 Feb 03
4
filled maps
Hi R-Help,
I would like to make filled contour maps of ocean data overlaid by
costlines from the map package.
I can draw the filled contours and the coastlines om the same plot, but
the filled contour also covers part of the land. To get rid of that I
tried to draw a filled coastline map on top of the filled contour, but
the filled map only draws the closed contours - so most of the land is
2003 Feb 06
6
Confused by SVD and Eigenvector Decomposition in PCA
Hey, All
In principal component analysis (PCA), we want to know how many percentage
the first principal component explain the total variances among the data.
Assume the data matrix X is zero-meaned, and
I used the following procedures:
C = covriance(X) %% calculate the covariance matrix;
[EVector,EValues]=eig(C) %%
L = diag(EValues) %%L is a column vector with eigenvalues as the elements
percent
2006 Nov 29
2
filled.contour and NA's
Hi,
I'm trying to do a filled.contour plot where some points are labelled as
NA. How do I could plot this kind of graphics, so NA points are coloured
black, keeping the levels of remaining points. NA's values represent
land points (meaningless), and what I want to plot is the levels of a
variable over the sea.
x<-seq(length=21, from=-10, by=.25)
y<-seq(length=8, from=36,
2003 Sep 12
1
eof and svd calculus with NA's
Hi,
Im currently dealing with large datasets of some climatic parameters and I'm
performing some EOF analysis on them. The problem is that for one of the
datasets, the continents are labelled as NA's (since the data was gathered
over the oceans). I don't know to which extent the dropping of those NA's
from the matrix will affect the future calculus, and how to maintain the
2007 May 27
1
na.approx and columns with NA's
Hi,
I have a object 'zoo':
dim(zz)
[1] 720 5551
where some columns only have NA's values (representing land data in a
sea surface temperature dataset) I find straightforward the use of
'na.approx' for individual columns from the zz matrix, but when applied
to the whole matrix:
zz.approx<-na.approx(zz)
Erro en approx(along[!na], y[!na], along[na], ...) :
need
2006 Nov 01
3
matrix manipulation with a for loop
Hi,
Having a matrix F.zoo (6575,189) with NA's in some columns I'm trying to
extract from each column the percent of days within an specific range,
so I've wrote this procedure:
length(subset(F.zoo[,86],(F.zoo[,86]>=5) & (F.zoo[,86]<=
9)))/(length(F.zoo[,86])-length(subset(F.zoo[,86],is.na(F.zoo[,86]))))*100
But to do this for each column (189) is pretty hard, so I want
2017 Dec 06
3
STATA base de datos
OK.
Lee primero los datos, guarda el data.frame (.RData o en un .csv o lo que
quieras).
Sal de RStudio o incluso reinicia el ordenador para liberar el máximo de
memoria.
Y comienza una nueva sesión con RStudio cargando los datos con "fread()".
Por otro lado, este conjunto de datos ¿cómo es de grande (filas y
columnas)?.
¿Y qué máquina tienes?. ¿Cuanta RAM tienes?.
Gracias,
Carlos.
2017 Dec 06
2
STATA base de datos
Pero entonces, ¿has leído ya el fichero en RStudio? ¿lo has convertido de
Stata a csv o algún otro formato que con el que puedas trabajar en RStudio?.
¿O ahora el problema es que has convertido el fichero pero no puedes hacer
ningún tipo de análisis porque tu equipo no tiene suficientes recursos?...
Gracias,
Carlos.
El 6 de diciembre de 2017, 13:09, Antonio Rodriguez Andres <
2019 Feb 19
2
Cambiar el formato de datos
Después del "gather()" puedes hacer un "arrange()" que es una ordenación. Y
dentro de "arrange()" le indicas la variable por la que ordenas (no hacen
falta comillas)...
Lo ordenará alfabéticamente.
Saludos,
Carlos Ortega
www.qualityexcellence.es
El mar., 19 feb. 2019 a las 13:47, Antonio Rodriguez Andres (<
antoniorodriguezandres70 en gmail.com>) escribió:
2006 Oct 28
2
subsetting, aggregating and zoo
Hi,
Having an zoo object I can subset it to obtain the days where I have the
values within some range:
is.zoo(z)
TRUE
subset(z[,1], z[,1]>=5 & z[,1]<= 10) #Yields: Year(day)
1988(13) 1988(14) 1988(16) 1988(20) 1988(21) 1988(22) 1988(25)
1988(26)
7.973946 9.933518 7.978227 7.512960 6.641862 5.667780 5.721358
6.863729
1988(27) 1988(28) 1988(29) 1988(30) 1988(32)
2017 Dec 06
3
STATA base de datos
Estimados
Pienso que falta memoria, aparte de las sugerencias ya aportadas, de pronto
se podrían colocar algunos rm(liberar_de_memoria), para no tener ocupado
espacio que no es requerido porque ese paso ya fue realizado.
Javier Rubén Marcuzzi
El 6 de diciembre de 2017, 13:58, Antonio Rodriguez Andres <
antoniorodriguezandres70 en gmail.com> escribió:
> Carlos
> He tecleado lo
2017 Dec 06
2
STATA base de datos
Freddy
el archivo lo leo en segundos en Stata. puedo probar el paquete heaven.
Pero si recuerdo me dio problemas en RStudio
El 6/12/2017 13:03, "Freddy Omar López Quintero" <freddy.vate01 en gmail.com>
escribió:
> El mié, 06-12-2017 a las 12:55 +0100, Antonio Rodriguez Andres escribió:
>
> me sale problema
> de memoria.
>
>
> Pregunta posiblemente tonta:
2003 May 27
1
Rcmdr on Debian
Hi,
I've been able to run Rcmdr on Debian-Woody without too much problems,
just to load first the tcltk and car libraries. The issue is that after
leaving R I'm not able to see at the prompt any character like 'ls', but
the unix instructions are executed, don't know why the visualization of
the unix commands is cancelled.
Antonio Rodriguez
2006 Oct 24
6
extract certain values from a ts
Hi,
Having several daily wind speed time series I want to extract those
consecutive days over and below certain values (i.e. 5 < x <8) Don't
know which funtion to use (aggregate, lapply?) and how to do it.
Thanks in advance
Antonio
2019 Feb 19
2
Cambiar el formato de datos
> gather(pobla, key = year, value = totpop, year60:year63)
Country year totpop
1 Afghanistan year60 8996351
2 Albania year60 1608800
3 Algeria year60 11124888
4 Andorra year60 13411
Gracias Carlos
Antonio
On Tue, 19 Feb 2019 at 12:54, Carlos Ortega <cof en qualityexcellence.es>
wrote:
> Sí, tienes varias formas.
>
> Mira la función
2017 Sep 01
4
Consejo
Estimados miembros de la comunidad de R
Me gustaria conocer dado que estoy trabajando con datos del World Values
Survey, y tengo que recodificar variables y manipularlas,
por donde podria empezar a estudiar el uso de R en grandes surveys. Que
podria comenzar a la leer.
Su respuesta sera bienvenida
saludos
Antonio
--
Member, Editorial Committee, *The Economic and Labour Relations Review* (a
2017 Jun 19
2
Problema con Histograma con porcentajes usando ggplot
Creo que esto me da para DK, y luego veré como aplicar el barplot
ess %>%
filter(cntry %in% c("DK")) %>%
count (stflife) %>%
mutate (freq = (n /sum(n)*100))%>%
print
2017-06-18 19:01 GMT-05:00 Antonio Rodriguez Andres <
antoniorodriguezandres70 en gmail.com>:
> He conseguido el total para un país, pero no me deja usar percent =
> count() /sum(count),
2003 Jan 21
1
problems when compiling package 'norm'
Dear All,
Trying to install package 'norm' under linux-mandrake8.2 I've got the
following messages:
R CMD INSTALL norm_1.0-9.tar.gz
* Installing *source* package 'norm' ...
** libs
g77 -mieee-fp -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro
-march=i586 -fno-fast-math -fno-strength-reduce -O3
-fomit-frame-pointer -pipe -mcpu=pentiumpro -march=i586 -fno-fast-math
2019 Mar 25
2
Uso de merge
Jose Luis
Column `Country` joining factors with different levels, coercing to
character vector
common_col_names <- intersect(names(sub_kei), names(knowledge))
> common_col_names
[1] "Country" "Year"
nrow(sub_kei) <- 132
nrow(knowledge) <- 3864
Tiene distinto numero de pais como de año, en el sub_kei aparecen 5 años y
en el otro dataset (knowledge) datos anuales
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
No me sale error pero no me imprime la linea, ni ningun gráfico por pais.
On Wed, 4 Sep 2019 at 18:42, neo <ericconchamunoz en gmail.com> wrote:
> podría ser el problema el tipo de dato en X y el tipo de gráfico que
> intentas hacer ?
>
> si Year es entero y estas pidiendo que el gráfico sea tipo "I", podría
> ser que quizá eso te produce el error ?
>
> si