Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via {sandpaper}
Source  : ce9122e
Branch  : main
Author  : Naupaka Zimmerman <[email protected]>
Time    : 2023-12-13 17:09:20 +0000
Message : Merge pull request #249 from ytakemon/iss_149

addresses why read.csv calls read.table in help doc #149
  • Loading branch information
actions-user committed Dec 13, 2023
1 parent 50d30c5 commit b0946d6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions 03-basics-factors-dataframes.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,20 @@ have time to cover. Look here to get familiar with functions you use
frequently, you may be surprised at what you find they can do.


::::::::::::::::::::::::::::::::::::::::: callout

## Tip: Why does ?read.csv open the documentations to read.table?

The reason for this is because `read.csv` is actually a short cut
for `read.table("file.csv", sep = ",")`. You can see in the help
documentation that there are several additional variations of
`read.table`, such as `read.csv2` to read tables separated by `;`
and `read.delim` to read in tables separated by `\t` (tabs). If you know how your table is separated, you can use one of the provided short cuts,
but case you run into an unconventional separator you are now equipt with the knowledge to define it in the `sep = ` arugument of `read.table`!


::::::::::::::::::::::::::::::::::::::::::::::::::


:::::::::::::::::::::::::

Expand Down
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"episodes/00-introduction.Rmd" "0703d3a4fb9cd0dfc4d54c78dea6fee6" "site/built/00-introduction.md" "2023-12-13"
"episodes/01-r-basics.Rmd" "a3c3f96b0da4eed5afb6359d70201f04" "site/built/01-r-basics.md" "2023-12-13"
"episodes/02-data-prelude.Rmd" "ab2b1fd3cdaae919f9e409f713a0a8ad" "site/built/02-data-prelude.md" "2023-12-13"
"episodes/03-basics-factors-dataframes.Rmd" "4660e67699c358bbf4aa70e5ff7b4e24" "site/built/03-basics-factors-dataframes.md" "2023-12-13"
"episodes/03-basics-factors-dataframes.Rmd" "cab7ab3fe53143558e6af3eee5774d35" "site/built/03-basics-factors-dataframes.md" "2023-12-13"
"episodes/04-bioconductor-vcfr.Rmd" "10eb69b4697d7ecb9695d36c0d974208" "site/built/04-bioconductor-vcfr.md" "2023-12-13"
"episodes/05-dplyr.Rmd" "f74055bd8677338a213e0a0c6c430119" "site/built/05-dplyr.md" "2023-12-13"
"episodes/06-data-visualization.Rmd" "8d0033bd9fd616c40e8c3b2a39448799" "site/built/06-data-visualization.md" "2023-12-13"
Expand Down

0 comments on commit b0946d6

Please sign in to comment.