aliciafritz / Lazy-LinkingIn

CAS 502: Project Team 5 Group Assignment
MIT License
0 stars 1 forks source link

Add New Feature: Connection Growth Over Time #2

Closed aliciafritz closed 6 months ago

aliciafritz commented 7 months ago

Connection Growth Over Time: Plot the growth of your connections over time to visualize your network's expansion.

willtbso commented 7 months ago

What characteristics will this depict? Raw number, number by company, by skills, by job titles?

aliciafritz commented 7 months ago

I think the python package is Matplotlib/matplotlib.pyplot, which is primarily for data visualization.

Website: https://matplotlib.org/

Basic example of code using matplotlib:

import matplotlib.pyplot as plt

Sample data

x = [1, 2, 3, 4, 5] y = [2, 4, 6, 8, 10]

Create a plot

plt.plot(x, y)

Add labels and title

plt.xlabel('X-axis') plt.ylabel('Y-axis') plt.title('Simple Plot')

Display the plot

plt.show()

aliciafritz commented 6 months ago

Jens finished feature 2