if (FALSE) {
# Open a chart object
myChart <- chart(myProject, chart = "My Chart")
# Set the chart error bars to display the minimum/maximum of the data
myChart <- chartErrorBar(myChart, type = "minmax")
# Disable the chart error bars
myChart <- chartErrorBar(myChart, type = "none")
# Set the chart error bars to display the 95th percentile error bars
myChart <- chartErrorBar(myChart, type = "percentile", lower = 2.5,
upper = 97.5)
}
Run the code above in your browser using DataLab