knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" ) install.packages(c("dplyr", "tibble"))
The goal of assignment1 is to make accessible, clean, and tidy dataset for Assignment 1 of the course CGSC 5901/4900 X Special Topics in Cognitive Science: Advanced Statistics for Cognitive Science at Carleton University.
You can install the development version of assignment1 from GitHub with:
# install.packages("devtools") devtools::install_github("romeopenheiro/assignment-1")
Everything related to the dataset generated can be found in the following directory structure
├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R │ ├── DATASET.R │ ├── assignment1-package.R │ └── utils-pipe.R ├── README.Rmd ├── README.md ├── assignment1.Rproj ├── data │ └── DATASET.rda ├── data-raw ├── inst │ └── rmarkdown │ └── templates │ └── assignment_template │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml └── man ├── DATASET.Rd ├── assignment1-package.Rd └── pipe.Rd
The dataset is a tibble with 12,240 rows and 11 variables. A glimpse of the variables is provided below.
library(assignment1) tibble::glimpse(DATASET)
Here is a random sample of 6 rows.
dplyr::slice_sample(DATASET, n = 6)
An example of the usage of the package can be seen by following this link.
This project is licensed under the MIT License - see the LICENSE.md file for details.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.