R Dataset / Package mosaicData / Births
Attachment | Size |
---|---|
dataset-25015.csv | 274.69 KB |
Documentation |
---|
On this Picostat.com statistics page, you will find information about the Births data set which pertains to US Births. The Births data set is found in the mosaicData R package. You can load the Births data set in R by issuing the following command at the console data("Births"). This will load the data into a variable called Births. If R says the Births data set is not found, you can try installing the package by issuing this command install.packages("mosaicData") and then attempt to reload the data. If you need to download R, you can go to the R project website. You can download a CSV (comma separated values) version of the Births R data set. The size of this file is about 281,279 bytes. US BirthsDescriptionNumber of births each day from 1968 to 1988 Usagedata(Births) FormatA data.frame with 7305 observations on the following 8 variables. itemcodedate [Date]
itemcodebirths number of births on DetailsThe number of births in SourceData source: National Vital Statistics System natality data, as provided by Google BigQuery and exported to csv Robert Kern (http://www.mechanicalkern.com/static/birthdates-1968-1988.csv) Examplesdata(Births) if(require(ggplot2)) { ggplot(data = Births, aes(x = date, y = births, colour = wday)) + stat_smooth(se = FALSE, alpha = 0.8, geom = "line") ggplot(data = Births, aes(x = day_of_year, y = births, colour = wday)) + geom_point(size = 0.4, alpha = 0.5) + stat_smooth(se = FALSE, geom = "line", alpha = 0.6, size = 1.5) if (require(dplyr)) { ggplot( data = bind_cols(Births %>% filter(year == 1978), Births78 %>% rename(births78 = births)), aes(x = births - births78) ) + geom_histogram(binwidth = 1) } } -- Dataset imported from https://www.r-project.org. |
Recent Queries For This Dataset |
---|
No queries made on this dataset yet. |
Title | Authored on | Content type |
---|---|---|
R Dataset / Package DAAG / litters | March 9, 2018 - 1:06 PM | Dataset |
R Dataset / Package robustbase / vaso | March 9, 2018 - 1:06 PM | Dataset |
OpenIntro Statistics Dataset - mlb_players_18 | August 9, 2020 - 12:25 PM | Dataset |
R Dataset / Package Zelig / mexico | March 9, 2018 - 1:06 PM | Dataset |
R Dataset / Package DAAG / softbacks | March 9, 2018 - 1:06 PM | Dataset |