-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.Rmd
More file actions
executable file
·31 lines (24 loc) · 993 Bytes
/
index.Rmd
File metadata and controls
executable file
·31 lines (24 loc) · 993 Bytes
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
---
title: "Python Basics for Data Science"
author: "Joel Ross"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: rstudio/bookdown-demo
description: "Introductory Python materials for the INFO 370: Introduction to Data Science Course. Compiled by Michael Freeman."
---
# About the book {-}
These materials introduce the Python programming language for Data Science. Compiled for the INFO 370: Introduction to Data Science Course.
_Compiled by Michael Freeman_

This book is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-nc-sa/4.0/).
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```