I imported a txt file into R, but part of the data shows up as a blank white square in one row. When I hover over the square, I can see the lyrics data separated by commas, but I'm not sure how to tidy the data for analysis.
I used the following code to import the data:
mxm <- read.delim("mxm_dataset_train.txt")
colnames(mxm) <-c("Description")
mxm <- mxm[-c(1:16), ]
I removed the first 16 rows because they were comments.