View source: R/plot_polar_error.R
plot_polar_error | R Documentation |
This figure plots one of several choices for system error (location error, range error, bearing error) against the target aspect or the bearing to the target
plot_polar_error(
scenario,
angleTerm = "bearing",
rTerm = "locationError",
colorTerm = "tgtAssigned",
doFacet = FALSE,
plotFalseTracks = FALSE
)
scenario |
MUST contain assignmentData (from target_assignment()) |
angleTerm |
(string) the variable plotted as an angle. Currently there are two options:
|
rTerm |
(string) the variable plotted radially. Currently there are three options:
|
colorTerm |
(string) the variable to be split by color. Currently there are two options:
|
doFacet |
(default FALSE) boolean. Determines whether the graph will also facet by colorTerm |
plotFalseTracks |
(default FALSE) boolead. Determines whether graph will show fast track points or hide them |
ggplot object
myScenario=scenarioMaker::example1_scenario %>%
target_assignment("point",cutoff=100)
plot_polar_error(scenario=myScenario,
angleTerm="bearing",
rTerm = 'locationError',
doFacet = TRUE,
plotFalseTracks=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.