powered by
Add marks to an scplot
add_marks( object, case = 1, positions, color = "red", size = 1, shape = 1, variable = ".dvar" )
An object of class scplot (see scplot()) with changed element marks.
scplot
scplot()
marks
An scplot object (class scplot) returned from the scplot() function.
Numerical vector with the case number or character string. case = "all" for all cases.
case = "all"
Either a vector indicating the points to be highlighted or a character string with a logical expression (e.g. values < mean(values))
values < mean(values)
A character string or a number defining the color of an element.
Text size relative to the base text size.
Number. See pch graphical parameter on par help page par().
pch
par
par()
Name of the dataline variable to apply the style.
If positions is an object returned from an outlier analysis outlier(), the corresponding outliers are marked.
positions
outlier()
library(scan) p1 <- scplot(exampleA1B1A2B2$Moritz) |> add_marks(positions = c(1,5,10,14)) p1 <- scplot(Huber2014) |> add_marks(positions = outlier(Huber2014))
Run the code above in your browser using DataLab