I have a portion of my script that was running fine before, but recently has been producing an odd statement after which many of my other functions do not work properly. I am trying to select the 8th and 23rd positions in a ranked list of values for each site to find the 25th and 75th percentile values for each day in a year for each site for 30 years. My approach was as follows (adapted for the four line dataset - slice(3) would be slice(23) for my full 30 year dataset usually):
library(“dplyr”)
mydata
structure(list(station_number = structure(c(1L, 1L, 1L, 1L), .Label = "01AD002", class = "factor"),
year = 1981:1984, month = c(1L, 1L, 1L, 1L), day = c(1L,
1L, 1L, 1L), value = c(113, 8.329999924, 15.60000038, 149
)), .Names = c("station_number", "year", "month", "day", "value"), class = "data.frame", row.names = c(NA, -4L))
value <- mydata$value
qu25 <- mydata %>%
group_by(month, day, station_number) %>%
arrange(desc(value)) %>%
slice(3) %>%
select(value)
Before, I would be left with a table that had one value per site to describe the 25th percentile (since the arrange function seems to order them highest to lowest). However, now when I run these lines, I get a message:
Adding missing grouping variables: `month`, `day`, `station_number`
This message doesn’t make sense to me, as the grouping variables are clearly present in my table. Also, again, this was working fine until recently. I have tried:
- detatch(“plyr”) – since I have it loaded before dplyr
- dplyr:: group_by – placing this directly in the group_by line
- uninstalling and re-intstalling dplyr, although this was for another issue I was having
Any idea why I might be receiving this message and why it may have stopped working?
Thanks for any help.
Update: Added dput example with one site, but values for January 1st for multiple years. The hope would be that the positional value is returned once grouped, for instance slice(3) would hopefully return the 15.6 value for this smaller subset.
Error: corrupt 'grouped_df', contains 0 rows, and 4 rows in groups
. You don't get that message? Maybe you need to give us more of your example data. BTW it's highly preferred for you todput
the data. – Hack-R?dput
) is the core R command to facilitate sharing data. On StackOverflow you're required to provide a reproducible example of your problem when you're troubleshooting an error or warning. So, if you dataset has a million rows and it's calledmydata
go in R and do something like thisdput(mydata[1:1000,])
and the paste the results to pastebin.com and give us the link so that we can help you. This assumes that there's enough data in the first 1,000 rows to reproduce your problem. – Hack-R