I have multiple CSV files I would like to import into R; then save those as an initState.Rdata
file; is that possible?
Currently I'm importing them as follows
Users <- read.csv('/Users/AndyD/Desktop/Data/DeakinUsersData.csv')
PagePaths <- read.csv('/Users/AndyD/Desktop/Data/DeakinPageData.csv')
Goals <- read.csv('/Users/AndyD/Desktop/Data/Deakin_Goals.csv')
Is it possible to import those and include them all in a initState.Rdata
?