Sorry if the question is simple!
I have an excel database, .xlsx format. However I wanted to convert it to the df <- structure(list(.......)
format so it's playable for you. Is there any way to do this?
Thanks!!
Sorry if the question is simple!
I have an excel database, .xlsx format. However I wanted to convert it to the df <- structure(list(.......)
format so it's playable for you. Is there any way to do this?
Thanks!!
Update
dput(df)
One way could be with readxl
:
install.packages("readxl")
library("readxl")
my_data <- read_excel("my_file.xls")