scan.text <- function(b, n.col = 1, v.names = "") { ## Purpose: Import a text block (with only numeric values) and convert it to data frame. ## ## Author: Feiming Chen ## ## Arguments: ## - b : a block of text containing only numeric values separated by spaces ## - n.col : number of columns in the data frame ## - v.names : variable names ## Return: ## a data frame containing imported numbers ## ## ________________________________________________ d1 <- scan(textConnection(b)) d2 <- as.data.frame(matrix(d1, ncol = n.col, byrow = T)) names(d2) <- v.names d2 } if (F) { # Unit Test scan.text("1 2 3 4 5 6", n.col = 3, v.names = c("ID", "V1", "V2")) ## ID V1 V2 ## 1 1 2 3 ## 2 4 5 6 }
Thursday, April 27, 2023
Import a text block (with only numeric values) and convert it to data frame
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment