Description Usage Arguments Examples
Transformation object for psychrometric chart
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | scale_drybulb_continuous(
name = waiver(),
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
limits = NULL,
units = waiver(),
...
)
scale_humratio_continuous(
name = waiver(),
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
limits = NULL,
units = waiver(),
...
)
scale_relhum(
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
units = waiver(),
...
)
scale_wetbulb(
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
limits = NULL,
units = waiver(),
...
)
scale_vappres(
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
limits = NULL,
units = waiver(),
...
)
scale_specvol(
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
limits = NULL,
units = waiver(),
...
)
scale_enthalpy(
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
limits = NULL,
units = waiver(),
...
)
|
name |
The name of the scale. Used as the axis or legend title. If
|
breaks |
One of:
|
minor_breaks |
One of:
|
labels |
One of:
|
limits |
One of:
|
units |
A string indicating the system of units chosen. Should be:
|
... |
Other arguments passed on to |
1 2 3 4 5 6 7 8 9 | ggpsychro() +
geom_grid_relhum() +
scale_relhum(minor_breaks = NULL) +
geom_grid_wetbulb() +
scale_wetbulb(breaks = seq(25, 30, by = 5), minor_breaks = NULL) +
geom_grid_vappres() +
scale_vappres(breaks = seq(6000, 7000, by = 500), limits = c(6000, 7000)) +
geom_grid_specvol() +
scale_specvol(labels = NULL)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.