Skip to content

Commit 25b32c1

Browse files
committed
Use DT
1 parent b78ec5e commit 25b32c1

File tree

3 files changed

+12
-38
lines changed

3 files changed

+12
-38
lines changed

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Imports:
1717
stats19,
1818
nycflights13,
1919
remotes,
20-
spDataLarge
20+
spDataLarge,
21+
DT
2122
Remotes:
2223
nowosad/spDataLarge

README.md

Lines changed: 8 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,13 @@
11

22

3-
# Quarto course website template
3+
This repo contain code for the Transport Data Science module at the
4+
Institute for Transport Studies, University of Leeds.
45

5-
A template for course websites developed with
6-
[Quarto](https://quarto.org) and hosted on GitHub.
6+
To set it up we used commands such as:
77

8-
This is all configured so you only need to edit the source files in
9-
Quarto (.qmd). The website is generated and hosted automatically by
10-
GitHub.
11-
12-
Example website:
13-
https://pakillo.github.io/quarto-course-website-template (see also
14-
https://github.com/rstudio-conf-2022/teach-ds-course-website for a more
15-
developed example).
16-
17-
## Using this template
18-
19-
1. Click on green button “Use this template” -\> “Create a new
20-
repository”
21-
22-
2. Choose a name for your repository
23-
24-
3. Important: check ‘Include all branches’ when creating the repository
25-
(because we will need the `gh-pages` branch to host the website).
26-
27-
4. Once your repo is created, remember to update the links to your
28-
GitHub repo in [\_quarto.yml](_quarto.yml), replacing ‘Pakillo’ with
29-
your GitHub username.
30-
31-
To create an empty branch and take a look at the [Quarto
32-
documentation](https://quarto.org/docs/publishing/github-pages.html):
33-
34-
``` bash
35-
git checkout --orphan gh-pages
36-
git reset --hard # make sure all changes are committed before running this!
37-
git commit --allow-empty -m "Initialising gh-pages branch"
38-
git push origin gh-pages
8+
``` r
9+
usethis::use_description()
10+
usethis::use_package("stats19")
11+
usethis::use_package("DT")
12+
usethis::use_package("quarto")
3913
```

README.qmd

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ format: gfm
44

55
This repo contain code for the Transport Data Science module at the Institute for Transport Studies, University of Leeds.
66

7-
To set it up we used the following commands:
7+
To set it up we used commands such as:
88

99
```{r}
1010
#| eval: false
1111
usethis::use_description()
1212
usethis::use_package("stats19")
13-
usethis::use_package("dplyr")
14-
usethis::use_package("ggplot2")
13+
usethis::use_package("DT")
1514
usethis::use_package("quarto")
1615
```

0 commit comments

Comments
 (0)