parallelcoordinate graph class
Hi there,
i’m a beginner with the processing language (and any other), that means at the moment i really get lost in space… :/
I should do a class for a parallelcoordinategraph, but I don’t know how to. We got last semester some basics in processing, but not more. It should be a simple graph and a simple class. That means, the data is given in an array, not in a text file or in a .csv or something like that. For example I have those data: {200, 500, 300, 100}, {300, 400, 200, 350}. The data in the first bracket is user 1 (line1) with 4 coordinates (points), the second bracket is user 2 with 4 coordinates. It should be extendable for more users. It means in this example I will need 2 lines having 4 points (i thought i will do this with the vertex function). On each point there should be an axis. The first axis has the xcoordinate: 200, the second 400, the third 600 and so on, depending on how many numbers are in one bracket. The users (lines), the points and the axis should be extendable.
Any help would be appreciated!