intro_r/README.org

49 lines
1.3 KiB
Org Mode
Raw Permalink Normal View History

2022-10-27 14:13:32 +02:00
* A brief introduction to R
2021-11-13 19:29:23 +01:00
2022-10-27 14:13:32 +02:00
Scripts describing simple tasks to learn the first steps to work with
data using the R programming environment
** First steps in R
2022-10-27 16:03:45 +02:00
* [[./script/help_r.org][Asking for help to use R]]
2022-10-27 21:29:58 +02:00
* [[./doc/install_Rsource.org][Installing R from source]]
2022-10-28 00:32:34 +02:00
* [[./doc/objects.org][Objects in R]]
* [[./script/integerq_modulo.R][Integer quocient and modulo]]
* [[./script/non_stand_eval.R][Non-standard evaluation in R]]
2022-10-27 14:13:32 +02:00
2022-10-27 23:58:12 +02:00
** Matching patterns
* [[./doc/match.patt.org]['gsub' and 'sub']]
2022-10-28 00:32:34 +02:00
2022-10-27 14:13:32 +02:00
** Subsetting and indexing
* [[./script/replace_values.R][Build column in table indexing values]]
** Reading data
* [[./script/extractpdf.R][Reading pdf files]]
2022-10-27 16:29:03 +02:00
2022-10-27 17:56:36 +02:00
** Vectorization
* [[./script/vectorization.R][Vectorization]]
2022-10-27 16:29:03 +02:00
** Iteration
* [[./script/iteration.R][Lapply, apply and for loop: brief introduction]]
2022-10-27 17:16:21 +02:00
2022-10-27 17:27:40 +02:00
** Web scraping
* [[./script/scraping2.R][Web scraping example]]
2022-10-27 17:59:46 +02:00
* [[./script/web_scraping.R][Using 'rvest' for scraping]]
2022-10-27 17:27:40 +02:00
2022-10-27 17:16:21 +02:00
** Interesting packages
* [[./script/roadoi_package.R]['roadoi']]
2022-10-27 17:23:16 +02:00
* [[./script/scraping.R]['crul' package - web scraping]]
2022-12-29 20:44:58 +01:00
** Data wrangling with {data.table}
* [[./doc/datatable_intro.org][Introduction to {data.table}]]
* [[./doc/datatable_querying.org][Querying in {data.table}: filter in ~i~ ]]
* [[./doc/datatable_querying_j.org][Querying in {data.table}: select in ~j~ ]]