-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
38 lines (26 loc) · 2.07 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo=FALSE, message=FALSE, warning=FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
library(introDS)
```
[![Travis-CI Build Status](https://travis-ci.org/SMAC-Group/introDS.svg?branch=master)](https://travis-ci.org/SMAC-Group/introDS)
[![Project Status: Active](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Licence](https://img.shields.io/badge/licence-AGPL--3.0-blue.svg)](https://opensource.org/licenses/AGPL-3.0)
[![minimal R version](https://img.shields.io/badge/R%3E%3D-3.5.0-6666ff.svg)](https://cran.r-project.org/)
# Introduction to Data Science `r emo::ji("sunglasses")` <a href="https://data-analytics-lab.net/"><img src="man/figures/logo.png" align="right" alt=" " width="230"></a>
The objective of the `introDS` package is to provide a support for the course entitled "Introduction to Data Science" given at University of Geneva. This course is intended to provide an introduction to statistical programming using the R language. It will also provide students with notions of data management, manipulation and analysis as well as of reproducible research, result-sharing and version control (using GitHub). At the end of the class, students should be able to automatically extract data from websites and create interactive web apps as well as dynamic reports to visualize and analyze them. Students should also be able to construct their own R packages, make them available on GitHub and document them using literate programming. This package is linked to the ebook [An Introduction to Statistical Programming Methods with R](http://r.smac-group.com).
# Installation Instructions `r emo::ji("computer")`
The `introDS` package is currently only available on GitHub. This version can be installed as follows:
```{r, eval = F}
# Install dependencies
install.packages(c("devtools","knitr","rmarkdown"))
# Install the package from GitHub
devtools::install_github("SMAC-Group/introDS")
```