I want to plot the data from a connected device (which count number of steps) used by 100 users. I got about 4000 records for each user.
So I plot each point mannualy in a picture of size 100*4000 using the package PIL : Image.putpixel((CurrentTimePx,CurrentRowPx),(CurrentActivityPixelIntensity,0,0))
But the picture is too small, I have to zoom to see correctly the points.
Do you have a solution to print the picture point by point but with a correct size ?
Edit :
It's a bit more difficult : for one user, I plot a point (at time 0) for which intensity=number of steps. Then I skip to next row (for another user) and I do the same. Once I've done all the users, I skip to next column (for time 1) and so on...
I join a picture of the complete visualisation. Final Image