Skip to content

Latest commit

 

History

History
37 lines (16 loc) · 792 Bytes

README.md

File metadata and controls

37 lines (16 loc) · 792 Bytes

Setting up your web site

URL http://github.com/dtkaplan/stat101 that has the instructions that you've been reading.

https://mrvettleson.github.io/Math1930

Putting links to data files on your own course web site

If you are going to use your site to provide student access to data sets of particular interest to you, you will want to put links and instructions on your course web site.

The markup that you include in your index.md file (in the docs/ directory) might look like this:

## Data files

Data files for this week:

- `https://dtkaplan.github.io/stat101/test.csv`

To create the data table in your R session, copy and paste 
this command into your console:

```r
My_data <- read.csv("https://dtkaplan.github.io/stat101/test.csv")
```