Dear all, how can I select only the numeric (or character) variables from a date.frame? Best regards
select only the numeric variables
3 messages · lamack lamack, Sundar Dorai-Raj, Chuck Cleland
lamack lamack wrote:
Dear all, how can I select only the numeric (or character) variables from a date.frame? Best regards
Try: x[sapply(x, is.numeric)] x[sapply(x, is.character)] where `x' is your data.frame. --sundar
library(MASS) anorexia[,sapply(anorexia, is.numeric)]
lamack lamack wrote:
Dear all, how can I select only the numeric (or character) variables from a date.frame? Best regards
______________________________________________ R-help at stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 452-1424 (M, W, F) fax: (917) 438-0894