Skip to content
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ tinyplot(Sepal.Length ~ Petal.Length | Species, data = iris) # formu
<img src="man/figures/README-quickstart2-1.png" style="width:70.0%" />

If you would prefer to save on a few keystrokes, you can use the
shorthand `plt()` alias instead instead of typing out `tinyplot()` in
full. Here’s the same plot with this shorthand alias, plus a few
aesthetic tweaks:
shorthand `plt()` alias instead of typing out `tinyplot()` in full.
Here’s the same plot with this shorthand alias, plus a few aesthetic
tweaks:

``` r
plt(
Expand All @@ -120,7 +120,7 @@ plt(Sepal.Length ~ Petal.Length | Species, data = iris)
style="width:70.0%" />

Themes are persistent and will be applied to subsequent plots. For
example, here is a grouped grouped density plot:
example, here is a grouped density plot:

``` r
plt(
Expand Down
4 changes: 2 additions & 2 deletions README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ tinyplot(Sepal.Length ~ Petal.Length | Species, data = iris) # formu
```

If you would prefer to save on a few keystrokes, you can use the shorthand
`plt()` alias instead instead of typing out `tinyplot()` in full. Here's the
`plt()` alias instead of typing out `tinyplot()` in full. Here's the
same plot with this shorthand alias, plus a few aesthetic tweaks:

```{r quickstart3}
Expand All @@ -127,7 +127,7 @@ plt(Sepal.Length ~ Petal.Length | Species, data = iris)
```

Themes are persistent and will be applied to subsequent plots. For example, here
is a grouped grouped density plot:
is a grouped density plot:

```{r quickstart4}
plt(
Expand Down