I have a csv file which has a lot of text in one of the columns and I when I read it into R, the full text is not present in the column. How can I read a csv file and preserve all of the information in the text column? Here's an example of the problem:
x1 <- rnorm(2)
x2 <- c("This is a really long string and when I run read.csv the full text doesn't appear",
"This is a really long string and when I run read.csv the full text doesn't appear")
x3 <- rnorm(2)
df <- data.frame(x1,x2,x3)
write.csv(df,"df.csv")
df <- read.csv("df.csv")