Displaying 1 result from an estimated 1 matches for "teamshalf".
2011 Sep 09
3
Read a list of files into named R data.frames
...ter.csv" "Pitching.csv"
[19] "PitchingPost.csv" "Salaries.csv"
[21] "Schools.csv" "SchoolsPlayers.csv"
[23] "SeriesPost.csv" "Teams.csv"
[25] "TeamsFranchises.csv" "TeamsHalf.csv"
> Allstar <- read.csv("Allstar.csv", header=TRUE)
...
> TeamsHalf <- read.csv("TeamsHalf.csv", header=TRUE)
Below is what I tried, which reads all the files, but doesn't create the
R objects in the global environment.
What is missing here?
for...