Skip to content

Commit 0aa7cac

Browse files
authored
Update blog2openlandsbasics.qmd
1 parent 0cf5c21 commit 0aa7cac

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

blogs/test/blog2openlandsbasics.qmd

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author:
66

77
date: 8-15-2025
88
categories: [Open-Source Skills] # self-defined categories
9-
draft: true # setting this to `true` will prevent your post from appearing on your listing page until you're ready!
9+
draft: false # setting this to `true` will prevent your post from appearing on your listing page until you're ready!
1010
---
1111

1212
# R Introduction
@@ -32,7 +32,7 @@ knitr::include_graphics("../../images/openblog2p2.png")
3232
What makes R special is its modular framework and extensibility—it's like having a basic toolkit that you can continuously enhance with specialized instruments. This is particularly valuable in clinical research, where methodological requirements can be highly specific and evolve quickly.
3333
Did You Know? 📝 R was named after its creators' first initials (Ross Ihaka and Robert Gentleman) and as a playful reference to the S programming language it superseded.
3434

35-
# CRAN – the Comprehensive R Archive Network - https://cran.r-project.org/
35+
# CRAN – the Comprehensive R Archive Network - `[CRAN](https://cran.r-project.org/)`
3636

3737
Your one-stop package shop!
3838

@@ -127,7 +127,7 @@ See this helpful cheat sheet for basic commands – https://iqss.github.io/dss-w
127127
R comes with many built-in packages. Some are loaded automatically when you start R (like stats and graphics), while others are installed but need to be loaded with library() when you need them (like survival or MASS).
128128
While Base R is powerful, modern R programming often relies on additional packages that make coding more intuitive and efficient. This firstly leads us on to the tidyverse.
129129

130-
# Tidyverse: Modern Data Science Tools – https://www.tidyverse.org/
130+
# Tidyverse: Modern Data Science Tools – `[Tidyverse](https://www.tidyverse.org/)`
131131

132132
```{r, echo=FALSE, fig.align='center', out.width="75%"}
133133
knitr::include_graphics("../../images/openblog2p5.png")
@@ -153,7 +153,7 @@ data %>%
153153
```
154154

155155

156-
# Pharmaverse: Industry-Specific Tools – https://pharmaverse.org/
156+
# Pharmaverse: Industry-Specific Tools – `[Pharmaverse](https://pharmaverse.org/)`
157157

158158
```{r, echo=FALSE, fig.align='center', out.width="75%"}
159159
knitr::include_graphics("../../images/openblog2p6.png")
@@ -210,11 +210,11 @@ That's it! You've just completed your first R analysis. From here, you can explo
210210
- Further Reading:
211211
"R for Data Science" by Hadley Wickham & Garrett Grolemund
212212
- Essential guide for modern R programming
213-
- Free online: https://r4ds.hadley.nz/
213+
- Free online: `[R for Data Science eBook](https://r4ds.hadley.nz/)`
214214

215215
- Links:
216-
- https://www.r-project.org/
217-
- https://cran.r-project.org/
218-
- https://posit.co/download/rstudio-desktop/
219-
- https://www.tidyverse.org/
220-
- https://pharmaverse.org/
216+
- `[R: The R Project for Statistical Computing](https://www.r-project.org/)`
217+
- `[CRAN](https://cran.r-project.org/)`
218+
- `[RStudio Desktop Download](https://posit.co/download/rstudio-desktop/)`
219+
- `[Tidyverse](https://www.tidyverse.org/)`
220+
- `[Pharmaverse](https://pharmaverse.org/)`

0 commit comments

Comments
 (0)