Skip to content
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

Example: nightfall #95

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions episodes/example.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ You can add a line with at least three colons and a `solution` tag.

You can also include figures generated from R Markdown:

```{r pyramid, fig.alt = "pie chart illusion of a pyramid", fig.cap = "Sun arise each and every morning"}
```{r pyramid, fig.alt = "pie chart illusion of a pyramid", fig.cap = "Night falls on Hoboken"}
pie(
c(Sky = 78, "Sunny side of pyramid" = 17, "Shady side of pyramid" = 5),
c("Night Sky" = 78, "Soft Side of pyramid" = 17, "Softer side of pyramid" = 5),
init.angle = 315,
col = c("deepskyblue", "yellow", "yellow3"),
col = c("royalblue4", "wheat3", "wheat4"),
border = FALSE
)
```
Expand Down