File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,11 @@ To be released as 2.3.0
18
18
constants (like ` aes(x = 1) ` or ` aes(colour = "smoothed") ` ) are stored
19
19
as is.
20
20
21
- In this version of ggplot2, you need to describe a mapping in a string,
22
- use ` quo_name() ` (for shorter labels) or ` quo_text() ` (if you want
23
- everything). If you do need to extract the value of a variable instead use
24
- ` rlang::eval_tidy() ` . You may want to condition on
21
+ In this version of ggplot2, if you need to describe a mapping in a string,
22
+ use ` quo_name() ` (to generate single-line strings; longer expressions may
23
+ be abbreviated) or ` quo_text() ` (to generate non-abbreviated strings that
24
+ may span multiple lines). If you do need to extract the value of a variable
25
+ instead use ` rlang::eval_tidy() ` . You may want to condition on
25
26
` (packageVersion("ggplot2") <= "2.2.1") ` so that your code can work with
26
27
both released and development versions of ggplot2.
27
28
You can’t perform that action at this time.
0 commit comments