Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ProjectMOSAIC/mosaicData
R package with Project MOSAIC datasets
https://github.com/ProjectMOSAIC/mosaicData
Last synced: 9 days ago
JSON representation
R package with Project MOSAIC datasets
- Host: GitHub
- URL: https://github.com/ProjectMOSAIC/mosaicData
- Owner: ProjectMOSAIC
- Created: 2014-08-22T00:51:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-11-09T15:01:49.000Z (about 1 year ago)
- Last Synced: 2024-11-14T14:23:58.284Z (29 days ago)
- Language: R
- Size: 5.72 MB
- Stars: 6
- Watchers: 5
- Forks: 6
- Open Issues: 7
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
- jimsghstars - ProjectMOSAIC/mosaicData - R package with Project MOSAIC datasets (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# mosaicData
mosaicData provides a number of data sets associated with Project MOSAIC.
## Documentation
Find documenation and additional information at .
## Installation
You can install the released version of mosaicData from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("mosaicData")
```And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("ProjectMOSAIC/mosaicData")
```
## ExampleThis is a basic example which shows you how to solve a common problem:
```{r example}
library(mosaicData)
suppressPackageStartupMessages(library(ggformula))
head(Weather)
gf_linerange(high_temp + low_temp ~ date | city ~ ., color = ~avg_temp, data = Weather) |>
gf_refine(scale_color_viridis_c(option = "D", end = 0.95, begin = 0.1))
```