Displaying 1 result from an estimated 1 matches for "solodata".
Did you mean:
olddata
2011 Jul 24
1
Histogram of a dataframe subset failing
Like most help forum users, I'm very new to R. I've been having this problem:
I started with a dataframe called fullData. With the subset command, I split
it into two separate dataframes, soloData and teamData.
The hist() function works when I use...
hist( subset(fullData, fullData$playlist_id==4 )$deaths)
...the exact call to subset() that I used to create each dataframe. However,
when I input,
hist(soloData$deaths)
I get the error, " invalid number of 'breaks' ". I...