Sunday, April 18, 2021

plotting parallel categories – part I

brief description: to create a comparative line plot of famous architects using multiple variables – year of birth, year in which one seminal work was completed and year of death. a plot showing progression of architecture career.

result:
method: i started by researching ways of plotting lines between points. but i quickly ran into data representation issues. to plot lines, we need (x,y) coordinate data and a way of connecting the data points to create lines. the connection rule is restricted to specific points related to the specific architect. 

data collection is tedious as I am doing it manually. i would like to learn data scrapping at some point. aside from data collection, i am not entirely satisfied with the result. i would like to improve by
  • adding architect names on y-axis
  • graphical improvements

the plot below is done using Pandas Parallel Plot, pd.plotting.parallel_coordinates()
python code: 
references:

No comments:

Post a Comment