Aqsa Kausar
commited on
Update trend_graph.py
Browse files- trend_graph.py +1 -1
trend_graph.py
CHANGED
@@ -46,7 +46,7 @@ top_skills = total_counts.nlargest(3).index
|
|
46 |
|
47 |
# Step 5: Plot and save separate graphs for the top 3 skills
|
48 |
for skill in top_skills:
|
49 |
-
print(
|
50 |
plt.figure(figsize=(8, 5))
|
51 |
plt.plot(df.index, df[skill], marker="o", label=skill)
|
52 |
|
|
|
46 |
|
47 |
# Step 5: Plot and save separate graphs for the top 3 skills
|
48 |
for skill in top_skills:
|
49 |
+
print(f"Trend of {skill} Over Time")
|
50 |
plt.figure(figsize=(8, 5))
|
51 |
plt.plot(df.index, df[skill], marker="o", label=skill)
|
52 |
|