Hi! Today Andrei and I pair-programmed on a stack bar plot builder. Here is an example: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= b := RTStackBarPlot new. b interaction popupText. b colorPalette colors: { Color blue . Color lightBlue }. b add: #(37 33 0 0 0) title: 'DN1'. b add: #(24 26 17 3 0) title: 'DN2'. b add: #(25 29 15 1 0) title: 'DN3'. b add: #(30 33 6 1 0) title: 'DN4'. b addLegend: #('strongly agree' 'agree' 'neutral' 'disagree' 'strongly disagree'). b barWidth: 260 height: 20. b addLabelToBars: [ :assoc | (assoc key / b totalSum * 100) asInteger asString, '%' ] if: [:assoc | assoc key > 5 ] color: Color white. b build. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Result is the following: Cheers, Andrei & Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
He he. Nice :) Doru On Fri, Dec 12, 2014 at 9:18 PM, Alexandre Bergel <[hidden email]> wrote:
_______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
+1
Stef Le 12/12/14 21:16, Tudor Girba a
écrit :
_______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
In reply to this post by abergel
Hi,
My graphic went pretty differently. See attached screenshot. I'm using Roassal2-PierreChanson.659.mcz, there is something else I need to update to get this stack bar plot? Cheers, Offray El 12/12/14 a las 14:18, Alexandre Bergel escribió: > Hi! > > Today Andrei and I pair-programmed on a stack bar plot builder. > > Here is an example: > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > b := RTStackBarPlot new. > b interaction popupText. > b colorPalette colors: { Color blue . Color lightBlue }. > b add: #(373300 0) title: 'DN1'. > b add: #(2426173 0) title: 'DN2'. > b add: #(2529151 0) title: 'DN3'. > b add: #(303361 0) title: 'DN4'. > b addLegend: #('strongly agree' 'agree' 'neutral' 'disagree' 'strongly disagree'). > b barWidth: 260 height: 20. > > b addLabelToBars: [ :assoc | (assoc key / b totalSum * 100) asInteger asString, > '%' ] if: [:assoc | assoc key > 5 ] color: Color white. > > b build. > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > > Result is the following: > > Cheers, > Andrei & Alexandre > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: > Alexandre Bergel http://www.bergel.eu > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > > > > > > _______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev > _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev barplot.png (95K) Download Attachment |
Hi Offray,
The script you’ve entered is not correct. Apparently some tabulation char have been wrongly replaced. Try this: | b | b := RTStackBarPlot new. b interaction popupText. b colorPalette colors: { Color blue . Color lightBlue }. b add: #(37 33 0 0 0) title: 'DN1'. b add: #(24 26 17 3 0) title: 'DN2'. b add: #(25 29 15 1 0) title: 'DN3'. b add: #(30 33 6 1 0) title: 'DN4'. b addLegend: #('strongly agree' 'agree' 'neutral' 'disagree' 'strongly disagree'). b barWidth: 260 height: 20. b addLabelToBars: [ :assoc | (assoc key / b totalSum * 100) asInteger asString, '%' ] if: [:assoc | assoc key > 5 ] color: Color white. b build. ^ b view canvas > On Dec 14, 2014, at 4:56 PM, Offray Vladimir Luna Cárdenas <[hidden email]> wrote: > > Hi, > > My graphic went pretty differently. See attached screenshot. > > I'm using Roassal2-PierreChanson.659.mcz, there is something else I need to update to get this stack bar plot? > > Cheers, > > Offray > > El 12/12/14 a las 14:18, Alexandre Bergel escribió: >> Hi! >> >> Today Andrei and I pair-programmed on a stack bar plot builder. >> >> Here is an example: >> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= >> b := RTStackBarPlot new. >> b interaction popupText. >> b colorPalette colors: { Color blue . Color lightBlue }. >> b add: #(373300 0) title: 'DN1'. >> b add: #(2426173 0) title: 'DN2'. >> b add: #(2529151 0) title: 'DN3'. >> b add: #(303361 0) title: 'DN4'. >> b addLegend: #('strongly agree' 'agree' 'neutral' 'disagree' 'strongly disagree'). >> b barWidth: 260 height: 20. >> >> b addLabelToBars: [ :assoc | (assoc key / b totalSum * 100) asInteger asString, >> '%' ] if: [:assoc | assoc key > 5 ] color: Color white. >> >> b build. >> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= >> >> Result is the following: >> >> Cheers, >> Andrei & Alexandre >> -- >> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: >> Alexandre Bergel http://www.bergel.eu >> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. >> >> >> >> >> >> _______________________________________________ >> Moose-dev mailing list >> [hidden email] >> https://www.iam.unibe.ch/mailman/listinfo/moose-dev >> > > <barplot.png>_______________________________________________ > Moose-dev mailing list > [hidden email] > https://www.iam.unibe.ch/mailman/listinfo/moose-dev -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. _______________________________________________ Moose-dev mailing list [hidden email] https://www.iam.unibe.ch/mailman/listinfo/moose-dev |
Free forum by Nabble | Edit this page |