Skip to content
Advertisement

How to plot colors based on cell values on a timestamp

I have a data which contains 16 columns, from which 1 column is “Time” column and other 15 columns are columns that represent colors. Data looks like this:

Color columns Time column

What I need is to have a plot in which at every timestamp represent these 15 colors.

The output should look like this:

Output

Any idea how to do this?

Thanks!!

Advertisement

Answer

Instead of using bar, it’s usually more convenient in these cases to use the normal plot in segments. Here is a toy example.

JavaScript
JavaScript

The code:

JavaScript

Which gives:

plot example

You can play with LINE_THICKNESS and FIG_SIZE for the dimensions.

EDIT:

The zip built-in function takes iterables and aggregates them in a tuple. So:

  • zip(colors, df['Time']) gets the (color, time_start) tuple, to associate the timepoints with the color. Let’s call this time_colors in the next line.
  • zip(time_colors, df['Time'][1:]) similarly associates the (color, time_start) tuples with the next timepoint. This is needed to know the limit to stop drawing the line.
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement