I have a around 50 rows of numerical data (with a string ID in the first column).
The column names are a sequential time series. The way alteryx processed them they turned out with a prefix and a number.
So the data might look something like this -
ID col_1 col_2 ... col_n-1 col_n
ABC 2 5 ... 10 8
BCD 4 0 ... 9 12
and so on for an arbitrary number of rows.
Note that the number of columns is also arbitrary.
I'd like to create a bar chart for each row using the column names as the x axis sequence.
Drawing things using characters here in the forums doesn't work very well, but an example of what I'm looking for might be something like the following:
graph 1
title: ABC
x axis: 1,2,...,n-1,n
bar heights: 2,5,...,10,8
graph 2
title: BCD
x axis: 1,2,...,n-1,n
bar heights: 4,0,...,9,12
and so forth.
The scatterplot tool requires that I use individual columns as the X and Y axes, and I'm not building a histogram or heat plot.
Is there a reasonably quick way to do this in Alteryx, or do I need to resort to a dedicated visualization tool like Tableau?