From e9587f005e3c5b6d6679fd6b13bf1e77e3b35257 Mon Sep 17 00:00:00 2001 From: Degoot-AM Date: Thu, 1 Aug 2024 21:05:45 +0000 Subject: [PATCH] change http to https --- episodes/clean-data.Rmd | 2 -- episodes/read-cases.Rmd | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/episodes/clean-data.Rmd b/episodes/clean-data.Rmd index b792d0d4..c9dcf8eb 100644 --- a/episodes/clean-data.Rmd +++ b/episodes/clean-data.Rmd @@ -383,8 +383,6 @@ datatype. ::::::::::::::::::::::::: - - A `linelist` object resembles a data frame but offers richer features and functionalities. Packages that are linelist-aware can leverage these features. For example, you can extract a dataframe of only the tagged columns diff --git a/episodes/read-cases.Rmd b/episodes/read-cases.Rmd index 3f38fc1d..032b99ec 100644 --- a/episodes/read-cases.Rmd +++ b/episodes/read-cases.Rmd @@ -57,7 +57,7 @@ This help us remember package functions and avoid namespace conflicts. ## Reading from files -Several packages are available for importing outbreak data stored in individual files into `R`. These include [rio](http://gesistsa.github.io/rio/), [readr](https://readr.tidyverse.org/) from the `tidyverse`, [io](https://bitbucket.org/djhshih/io/src/master/), [ImportExport](https://cran.r-project.org/web/packages/ImportExport/index.html), and [data.table](https://rdatatable.gitlab.io/data.table/). Together, these packages offer methods to read single or multiple files in a wide range of formats. +Several packages are available for importing outbreak data stored in individual files into `R`. These include [rio](https://gesistsa.github.io/rio/), [readr](https://readr.tidyverse.org/) from the `tidyverse`, [io](https://bitbucket.org/djhshih/io/src/master/), [ImportExport](https://cran.r-project.org/web/packages/ImportExport/index.html), and [data.table](https://rdatatable.gitlab.io/data.table/). Together, these packages offer methods to read single or multiple files in a wide range of formats. The below example shows how to import a `csv` file into `R` environment using `{rio}` package. @@ -91,7 +91,7 @@ Can you read data from a compressed file in `R`? Download this [zip file](https: ::::::::::::::::: hint -You can check the [full list of supported file formats](http://gesistsa.github.io/rio/#supported-file-formats) +You can check the [full list of supported file formats](https://gesistsa.github.io/rio/#supported-file-formats) in the `{rio}` package on the package website. To expand {rio} to the full range of support for import and export formats run: