Another solution
factor(port1[,2], labels=levels(stocks[,2]))
-
A R learner.
--
View this message in context:
http://r.789695.n4.nabble.com/mixing-strings-and-numeric-doubles-in-an-array-tp2312091p2312313.html
Sent from the R help mailing list archive at Nabble.com.
__
If you do an 'str' on your boject, you will probably find that TICKER
is a factor. This is probably not what you want. So when you create
the dataframe 'stock', use the parameter 'stringsAsFactors=FALSE' to
prevent the conversion to factors.
In the mean time, you can do:
stocks$TICKER <- as.cha
2 matches
Mail list logo