Variable width bar graphs using Veusz

Background and rationale

Variable width bar graphs (or column charts) are used in various technical disciplines. Currently Veusz does not directly facilitate such graphs. However, this can be achieved using XY plotters to draw rectangles of variable height and width, either a single rectangle or a series of rectangles with the same properties/formating (such as line and fill colour) for each data category.

Normally, the data for a variable width bar graph consists of three vectors, entry (category), height and width. Converting these to vectors for plotting the x-y traces for each entry could be done in a spreadsheet, but adding each manually to an XY plotter in Veusz could be a bit tedious if there are more than a few entries. This is best achieved programmatically, and here R has been used for this task; conversion of the raw data and the generation of the initial Veusz plot for subsequent customisation.

Others describe methods to do this using spreadsheet graphs (e.g., Peltier 20091, Schwabish 20152), however these are relative complex and are not easily automated. Labelling the graphs in these examples is particularly awkward. So a method using R and Veusz seems to be an easier and more flexible alternative. Of course, this can be done in R directly (using barplot(heights, widths) or R packages, ggplot or mekko and the like), however, this does not come with the convince provided by Veusz. Ideally, it should be done with a Python script integrated into Veusz, but this is my solution for now.

Procedure

Provide source data in standard Veusz format in a file named varBars.data.txt, as shown below. The entries do not need to be sorted by height and there can multiple entries per category. The category names must follow Python naming rules, so no spaces or prohibited symbols (however, the R code replaces the operators, +, -, / and *, with tildes). Commonly underscores would be used to replace spaces, but Veusz uses these to start subscripting in text elements, so '.' could be used (see the genome example below where this was done).

Run the R code ensuring that varBars.data.txt is in working directory, or use setwd() to point to the appropriate location. The code will create two files, varBars.txt and varBars.vsz.

Open varBars.vsz in Veusz and modify as needed.

Examples

Fruit

varBars.fruit.vsz

varBars.fruit.png

Genome repeats

varBars.data.genome.txt

varBars.genome.txt

Initial - varBars.genome.vsz

varBars.genome.png

Edited - varBars.genome.edited.vsz

varBars.genome.edited.png

Note: in this case the category names included characters not valid in Python names (space and '/'), so these were replaced with '.' and '~', respectively, before running the R code. Then, in the edited version, they were reverted using the Veusz 'replace text' tool applied to text elements only.

R code

R code file

@copyright: 2018 Ian Riley <ian@riley.asia>

License

GNU GPL, see COPYING for details.

Known issues and limitations


Hits

412

  1. Peltier J. 2009 Variable Width Column Charts (Cascade Charts), Peltier Tech Blog, URL https://peltiertech.com/variable-width-column-charts, viewed 8 June 2018. (1)

  2. Schwabish J. 2015. Marimekko Chart in Excel. Policy Viz Blog, URL https://policyviz.com/2015/11/30/marimekko-chart-in-excel, viewed 8 June 2018. (2)

varBars.R (last edited 2018-06-19 12:26:26 by IanRiley)