Description Usage Arguments Value Examples
Format numbers as main variables on the 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | label_drybulb(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
label_humratio(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
label_relhum(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
label_wetbulb(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
label_vappres(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
label_specvol(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
label_enthalpy(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
drybulb_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
humratio_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
relhum_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
wetbulb_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
vappres_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
specvol_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
enthalpy_format(
x,
accuracy = NULL,
scale = 1,
units,
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
parse = FALSE,
...
)
|
x |
A numeric vector |
accuracy |
A number to round to. Use (e.g.) Applied to rescaled data. |
scale |
A scaling factor: |
units |
A single string indcating the unit system to use. Should be either
|
big.mark |
Character used between every 3 digits to separate thousands. |
decimal.mark |
The character to be used to indicate the numeric decimal point. |
trim |
Logical, if |
parse |
If |
... |
Other arguments passed on to |
All label_()
functions return a "labelling" function, i.e. a function that
takes a vector x
and returns a character vector of length(x)
giving a
label for each input value.
Labelling functions are designed to be used with the labels
argument of
ggplot2 scales. The examples demonstrate their use with x scales, but
they work similarly for all scales, including those that generate legends
rather than axes.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.