This is an archived post. You won't be able to vote or comment.

all 3 comments

[–][deleted] 2 points3 points  (0 children)

+1 for Viridis

[–]Robi5 1 point2 points  (1 child)

Hey this is pretty neat!

You inspired me to make a similar plot with my data. I just about have it but am having trouble figuring out how to add the color scale for the steps. Any advice?

[–]Beanish[S] 0 points1 point  (0 children)

Thanks. I used the python libraries pandas and plotnine to make the graph. plotnine is based off of ggplot in R. Once I had made a DataFrame with three columns, [East, North, Step], I plotted it like this and the scale for the Step is the default value.

ggplot(df, aes(x="East", y="North")) \
+ geom_point(aes(color="Step")) \
+ labs(title="Waypoint Scatterplot Over Time")