Skip to content
Advertisement

How to plot data in straight line and in different line style depending on the data set

I have a unique data set (the number of rows and columns can vary case to case.)

JavaScript

As you see it have a unique combination of data set (constant and then change, constant and then change.) I want to plot the constant data set in the solid straight line without any dash-type and the data which is not in straight line will be in different dash-type. I need a script (either gnuplot or matplotlib) that can plot the data as per attached figure.enter image description here In this figure I have shown only three lines, as an example.

I have created below gnuplot script that give me my required plot (enter image description here but it does not give me the horizontal lines, solid without any dash type.

JavaScript

This is from theozh’s script enter image description here

Advertisement

Answer

In gnuplot I would do it like this. Draw your data twice

  1. with lines and different dashtype
  2. and the horizontal lines with vectors but only if the y-value doesn’t change.

It is a bit difficult to distinguish the dashed lines because some of them are on top of each other. You need to optimize this a bit.

Code:

JavaScript

Result:

enter image description here

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement