Skip to content

Change size to linewidth for ggplot 3.4.0 #370

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion index.qmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Welcome {.unnumbered}

This is the on-line version of work-in-progress **3rd edition** of "ggplot2: elegant graphics for data analysis" published by Springer.
You can learn what's changed from the 2nd edition in the [Preface](#preface-3e).
You can learn what's changed from the 2nd edition in the [Preface](#sec-preface-3e).

While this book gives some details on the basics of ggplot2, its primary focus is explaining the Grammar of Graphics that ggplot2 uses, and describing the full details.
It is not a [cookbook](https://r-graphics.org), and won't necessarily help you create any specific graphic that you need.
Expand Down
2 changes: 1 addition & 1 deletion themes.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For example, imagine you've made the following plot of your data.
#| label: motivation-1
base <- ggplot(mpg, aes(cty, hwy, color = factor(cyl))) +
geom_jitter() +
geom_abline(colour = "grey50", size = 2)
geom_abline(colour = "grey50", linewidth = 2)
base
```

Expand Down