-
curTrial
PerformancePlotter.Trial curTrial
Contains all the current trial performance data
-
curAgentDatasets
PerformancePlotter.AgentDatasets curAgentDatasets
contains the plot series data that will be displayed for the current agent
-
agentTrials
java.util.Map<K,V> agentTrials
contains all trial data for each agent
-
curAgentName
java.lang.String curAgentName
The name of the current agent being tested
-
colCSR
org.jfree.data.xy.XYSeriesCollection colCSR
All agent plot series for the the most recetent trial's cumulative reward per step
-
colCER
org.jfree.data.xy.XYSeriesCollection colCER
All agent plot series for the the most recetent trial's cumulative reward per episode
-
colAER
org.jfree.data.xy.XYSeriesCollection colAER
All agent plot series for the the most recetent trial's average reward per episode
-
colMER
org.jfree.data.xy.XYSeriesCollection colMER
All agent plot series for the the most recetent trial's median reward per episode
-
colCSE
org.jfree.data.xy.XYSeriesCollection colCSE
All agent plot series for the the most recetent trial's cumulative step per episode
-
colSE
org.jfree.data.xy.XYSeriesCollection colSE
All agent plot series for the most recetent trial's steps per episode
-
colCSRAvg
org.jfree.data.xy.YIntervalSeriesCollection colCSRAvg
All agent plot series for the average of all trial's cumulative reward per step
-
colCERAvg
org.jfree.data.xy.YIntervalSeriesCollection colCERAvg
All agent plot series for the average of all trial's cumulative reward per episode
-
colAERAvg
org.jfree.data.xy.YIntervalSeriesCollection colAERAvg
All agent plot series for the average of all trial's average reward per episode
-
colMERAvg
org.jfree.data.xy.YIntervalSeriesCollection colMERAvg
All agent plot series for the average of all trial's median reward per episode
-
colCSEAvg
org.jfree.data.xy.YIntervalSeriesCollection colCSEAvg
All agent plot series for the average of all trial's cumulative steps per episode
-
colSEAvg
org.jfree.data.xy.YIntervalSeriesCollection colSEAvg
All agent plot series for the average of all trial's steps per episode
-
metricsSet
java.util.Set<E> metricsSet
A set specifying the performance metrics that will be plotted
-
trialMode
TrialMode trialMode
specifies whether the most recent trial, average of all trials, or both plots will be displayed
-
collectData
boolean collectData
Whether the data from action observations received should be recoreded or not.
-
lastTimeStepUpdate
int lastTimeStepUpdate
The last time step at which the plots' series data was updated
-
lastEpisode
int lastEpisode
The last episode at which the plot's series data was updated
-
curTimeStep
int curTimeStep
the current time step that was recorded
-
curEpisode
int curEpisode
the current episode that was recorded
-
delay
int delay
the delay in milliseconds between which the charts are updated automatically
-
significance
double significance
the significance level used for confidence intervals. The default is 0.05 (corresponding to a 95% CI).
-
needsClearing
boolean needsClearing
Whether the current plots need their series data cleared for a new trial
-
trialUpdateComplete
PerformancePlotter.MutableBoolean trialUpdateComplete
Synchronization object to ensure proper threaded plot updating