Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Suggests:
devtools,
knitr,
rmarkdown
rmarkdown,
rmdformats
VignetteBuilder: knitr
8 changes: 0 additions & 8 deletions example.R

This file was deleted.

8 changes: 4 additions & 4 deletions vignettes/demo.Rmd → quickstart.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ output:
rmdformats::robobook:
code_folding: show
toc_depth: 4
bibliography: demo.bib
bibliography: quickstart.bib
link-citations: true
---

Expand All @@ -21,14 +21,14 @@ While none of these tasks are particularly complex, `NetworkDataCompanion` is mo

# Preparing the workspace

The first step is to install `NetworkDataCompanion` from GitHub using the `devtools` library and the `install_github` function.
The first step is to install `NetworkDataCompanion` from GitHub using the `devtools` library and the `install_github` function. Here, we have suppressed messages as there are quite a few.

```{R}
```{R, message=F}
library(devtools)
devtools::install_github("QuackenbushLab/NetworkDataCompanion")
```

Once you have installed the package, load the library into your workspace. Here, we have suppressed package loading messages as there are quite a few.
Once you have installed the package, load the library into your workspace.

```{R, message=F}
library(NetworkDataCompanion)
Expand Down
File renamed without changes.