- 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.