pal {riskyr} | R Documentation |
List current values of scenario color palette.
Description
pal
is initialized to a vector of named elements (colors)
to define the scenario color scheme that is
used throughout the riskyr package.
Usage
pal
Format
An object of class character
of length 16.
Details
All color information corresponding to the current scenario
is stored as named colors in a vector pal
.
To change a color, assign a new color to an existing element name.
pal
currently contains colors with the following names:
-
N
Color representing the population ofN
cases or individuals. -
cond_true
Color representing cases ofcond_true
, for which the current condition isTRUE
. -
cond_false
Color representing cases of incond_false
, for which the current condition isFALSE
. -
dec_pos
Color representing cases ofdec_pos
, for which the current decision ispositive
. -
dec_neg
Color representing cases indec_neg
, for which the current decision isnegative
. -
dec_cor
Color representing cases of correct decisionsdec_cor
, for which the current decision isaccurate
. -
dec_err
Color representing cases of erroneous decisionsdec_err
, for which the current decision isinaccurate
. -
hi
Color representing hits or true positives inhi
(i.e., correct cases for which the current condition is TRUE and the decision is positive). -
mi
Color representing misses or false negatives inmi
(i.e., incorrect cases for which the current condition is TRUE but the decision is negative). -
fa
Color representing false alarms or false positives infa
(i.e., incorrect cases for which the current condition is FALSE but the decision is positive). -
cr
Color representing correct rejections or true negatives incr
(i.e., correct cases for which the current condition is FALSE and the decision is negative). -
ppv
Color representing positive predictive valuesPPV
(i.e., the conditional probability that the condition is TRUE, provided that the decision is positive). -
npv
Color representing negative predictive valuesNPV
(i.e., the conditional probability that the condition is FALSE, provided that the decision is negative). -
txt
Color used for text labels. -
brd
Color used for borders. -
bg
Color used for plot background (used to setpar(bg = bg_col)
).
Note that color names for frequencies correspond to frequency names,
but are different for probabilities (which are written in lowercase
and only PPV
and NPV
have assigned colors).
See Also
init_pal
initializes color information;
num
contains basic numeric parameters;
init_num
initializes basic numeric parameters;
txt
contains current text information;
init_txt
initializes text information;
freq
contains current frequency information;
comp_freq
computes current frequency information;
prob
contains current probability information;
comp_prob
computes current probability information.
Other lists containing current scenario information:
accu
,
freq
,
num
,
pal_bwp
,
pal_bw
,
pal_kn
,
pal_mbw
,
pal_mod
,
pal_org
,
pal_rgb
,
pal_unikn
,
pal_vir
,
prob
,
txt_TF
,
txt_org
,
txt
Examples
pal # shows all color names and current values
pal["hi"] # shows the current color for hits (true positives, TP)
pal["hi"] <- "gold" # defines a new color for hits (true positives, TP)