Displaying 4 results from an estimated 4 matches for "whatcol".
2015 Oct 08
1
Tranformar falsas variables char en numéricas
Hola,
Una manera muy sencilla de hacerlo es esta:
#-------------------------------
whatcol <- 0
for(i in 1:ncol(d)){
whatcol[i] <-class(d[,i])
}
whatcol
#--------------------------------
> whatcol <- 0
> for(i in 1:ncol(d)){
+ whatcol[i] <-class(d[,i])
+ }
> whatcol
[1] "character" "character" "factor" "factor" "...
2013 Apr 30
2
R Function to extract columnNames
Hi,
May be this helps:
funcName<- function(df1, x){
?whatCol=df1[[x]]
?print("Got it")
?print(whatCol)
?}
?
funcName(df,"ColA")
#[1] "Got it"
#[1] 1 2 3 4 5
? funcName(df,"ColB")
#[1] "Got it"
#[1] A B C D E
#Levels: A B C D E
A.K.
>I am trying to extract the 2nd column from a dataframe using a functio...
2015 Oct 08
3
Tranformar falsas variables char en numéricas
Hola usuarios de R,
Antes de nada presentarme, soy nuevo en R (antiguo... y bueno actual
usuario de SAS), llevo menos de un mes y estoy intentando empezar con
pequeñas cosas.
Hay un tema que me está llevando bastante tiempo y por más que investigo y
hago pruebas no logro saber como se hace; veréis tengo un data.frame el
cuál tiene bastante variables y todas ellas clasificadas como char, sin
2005 Sep 14
2
Scan and Lists
This may be a newbie question - although I did search for this error
message in the archives and via google and didn't see this error:
The help page for "scan" indicates that among the types of data
capable of being read are:
> "The supported types are 'logical', 'integer', 'numeric', 'complex', 'character', 'raw' and