You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you run this code (or similar), you get no data for the year 2000. The issue appears to be that the class_level "Total" (99) is missing for that year, and I can't figure out any reason it should be. Not sure if this is an issue with the package or with the underlying data it draws from, so apologies if I'm bringing this to the wrong people.
When I remove the class_level filter and check the breakdown for that variable separately for each of the three years, this is what I get. It seems like the "Total" numbers perhaps ended up in the "Other (total)" category and the latter just went missing, but that's just a guess.
> summary(subset(test, year == 1999)$class_level)
First-time Other (transfer-ins or non-first-time-entering)
47616 0
Other (continuing) Other (total)
0 36136
Total Missing/not reported
48888 0
Not applicable Suppressed data
0 0
> summary(subset(test, year == 2000)$class_level)
First-time Other (transfer-ins or non-first-time-entering)
48056 0
Other (continuing) Other (total)
0 49144
Total Missing/not reported
0 0
Not applicable Suppressed data
0 0
> summary(subset(test, year == 2001)$class_level)
First-time Other (transfer-ins or non-first-time-entering)
48360 0
Other (continuing) Other (total)
0 31512
Total Missing/not reported
49368 0
Not applicable Suppressed data
0 0
The text was updated successfully, but these errors were encountered:
Hi @robertv4311 – apologies for the delay, and thanks for flagging! The issue is indeed with the underlying API that the package pulls from (there aren't rows for the combination of degree_seeking and class_level for 2000). I flagged this with the research team that processes the underlying data, and I'll update here if we're able to add the summary rows in a future data release. Thanks for your patience!
If you run this code (or similar), you get no data for the year 2000. The issue appears to be that the class_level "Total" (99) is missing for that year, and I can't figure out any reason it should be. Not sure if this is an issue with the package or with the underlying data it draws from, so apologies if I'm bringing this to the wrong people.
1999 2001
48888 49368
When I remove the class_level filter and check the breakdown for that variable separately for each of the three years, this is what I get. It seems like the "Total" numbers perhaps ended up in the "Other (total)" category and the latter just went missing, but that's just a guess.
The text was updated successfully, but these errors were encountered: