How to import data from excel into R studio. R programming for beginners
Video Statistics and Information
Channel: R Programming 101
Views: 136,344
Rating: 4.9206848 out of 5
Keywords: import data from excel, importing data from excel, R programming for beginners, R studio, data science, import excel data
Id: cnD1op2Oo3M
Channel Id: undefined
Length: 8min 2sec (482 seconds)
Published: Wed Feb 20 2019
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
data <- readxl::read_xlsx("data.xlsx")
^ And that's how you load an excel file into R with 1 line of code.