Guest User

Untitled

a guest
Feb 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. # Paste the data into a string:
  2. data_string <- " Filename Fc
  3. Q5161811.04 20.36
  4. Q5161811.04 20.46
  5. Q5161811.04 24.17
  6. Q5161811.04 20.20 "
  7.  
  8. # Use a fileConnection to read the data into a data frame
  9. the_data <- read.table(file = textConnection(object = data_string),
  10. header = TRUE,
  11. sep = "",
  12. stringsAsFactors = FALSE)
Add Comment
Please, Sign In to add comment