Skip to content

fixing rdatamining link #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 13, 2025
Merged
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
fixing rdatamining link
fixes #97
jt14den authored Feb 13, 2025
commit 5be389831be663b3f6965bebeccf4fb767f160b7
2 changes: 1 addition & 1 deletion episodes/00-before-we-start.Rmd
Original file line number Diff line number Diff line change
@@ -522,7 +522,7 @@ mean(mtcars$mpg)
sixCylinder <- mtcars[mtcars$cyl == 6, ]
```

See also rdatamining.com's [list of free datasets](https://www.rdatamining.com/resources/data).
See also rdatamining.com's [list of free datasets](https://www.rdatamining.com/resources/free-datasets).

<br>


Unchanged files with check annotations Beta

- **Do not use names of functions that already exist in R:** There are some
names that cannot be used because they are the names of fundamental functions in
R (e.g., `if`, `else`, `for`, see
[here](https://stat.ethz.ch/R-manual/R-devel/library/base/html/Reserved.html)

Check warning on line 104 in episodes/01-intro-to-r.Rmd

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [here](https://stat.ethz.ch/R-manual/R-devel/library/base/html/Reserved.html)
for a complete list. In general, even if it's allowed, it's best to not use
other function names (e.g., `c`, `T`, `mean`, `data`, `df`, `weights`). If in
doubt, check the help to see if the name is already in use.