Skip to content

BoxPlot, ViolinPlot and CompositeCharts

Compare
Choose a tag to compare
@akevalion akevalion released this 27 Jul 13:02
· 155 commits to master since this release
ef9af6d
  • RSAbstractContainerBuilder => RSBuilder added as main class to create builders
  • Fixed Roassal3-Bloc
  • Added RSCoOccurrenceMatrixBuilder
  • Refactor in RSChart, now we have RSCompositeChart, and plots are a kind of charts
  • fix some dependency with Random
  • added more box plot examples
  • added violin plot examples
  • added cluster chart for box plot, bar plot and violin plot
  • Blox plot supports notch
  • Added more tests about charts
  • bandwith for density plots now it auto calculate
| violinPlotA violinPlotB data aRSClusterChart |
data := {{-5. 12. 12. 13. 14. 14. 15. 24. }. {-5. 12. 12. 13. 14. 14. 15. 24. }.}.

violinPlotA := self data: data.
violinPlotA bandwidth: 3.
"violinPlotA color: Color green."

violinPlotB := self data: data.
violinPlotB bandwidth: 3.
"violinPlotB color: Color red."

aRSClusterChart := violinPlotA + violinPlotB.

^ aRSClusterChart open.
image