Skip to content

Commit f115190

Browse files
fixing typo
1 parent dc3bb44 commit f115190

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

posts/2025-07-06-CSEE-intro-shiny/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ ggplot(data = penguins, mapping = aes(x = bill_length_mm, y = bill_depth_mm)) +
215215

216216
We want our app to display the collaboration network for a university that the user of our Shiny app will select, so let's start by making a plot of the collaboration network for McGill University.
217217

218-
ggplot likes ```tidy``` data, where each row of the data is an observation and each column represents different variables describing that observation. Because our network data are not in this format, we need the help of another package called ```package``` to plot them. Let's install and load it:
218+
ggplot likes ```tidy``` data, where each row of the data is an observation and each column represents different variables describing that observation. Because our network data are not in this format, we need the help of another package called ```tidygraph``` to plot them. Let's install and load it:
219219

220220
```{r demo-tidygraph}
221221
# install.packages("tidygraph")

0 commit comments

Comments
 (0)