Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -47,34 +47,79 @@ elif option == "Plots":
|
|
47 |
# 1. Job Category Distribution Bar Plot
|
48 |
st.subheader("Job Category Distribution")
|
49 |
category_counts = jobs_df[category_column].value_counts()
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
52 |
ax1.set_xlabel("Job Category")
|
53 |
ax1.set_ylabel("Number of Jobs")
|
54 |
ax1.set_title("Distribution of Jobs Across Categories")
|
55 |
plt.xticks(rotation=45, ha="right")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
st.pyplot(fig1)
|
57 |
|
|
|
58 |
# 2. Pie Chart for Category Distribution
|
59 |
st.subheader("Job Category Proportions")
|
60 |
-
fig2, ax2 = plt.subplots(figsize=(10,
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
st.pyplot(fig2)
|
64 |
|
65 |
|
66 |
|
67 |
-
|
68 |
st.subheader("Top Job Titles")
|
69 |
top_job_titles = jobs_df[job_title_column].value_counts().head(10)
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
72 |
ax4.set_xlabel("Job Title")
|
73 |
ax4.set_ylabel("Count")
|
74 |
ax4.set_title("Top 10 Job Titles")
|
75 |
plt.xticks(rotation=45, ha="right")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
st.pyplot(fig4)
|
77 |
|
|
|
78 |
# 5. Word Cloud for Job Descriptions
|
79 |
st.subheader("Word Cloud for Job Descriptions")
|
80 |
wordcloud = WordCloud(width=800, height=400, background_color='white').generate(' '.join(jobs_df[description_column].dropna()))
|
|
|
47 |
# 1. Job Category Distribution Bar Plot
|
48 |
st.subheader("Job Category Distribution")
|
49 |
category_counts = jobs_df[category_column].value_counts()
|
50 |
+
|
51 |
+
# Create the bar plot
|
52 |
+
fig1, ax1 = plt.subplots(figsize=(10, 6)) # Set figure size
|
53 |
+
bars = ax1.bar(category_counts.index, category_counts.values, color='skyblue')
|
54 |
+
|
55 |
ax1.set_xlabel("Job Category")
|
56 |
ax1.set_ylabel("Number of Jobs")
|
57 |
ax1.set_title("Distribution of Jobs Across Categories")
|
58 |
plt.xticks(rotation=45, ha="right")
|
59 |
+
|
60 |
+
# Add labels on the right side of the bars
|
61 |
+
for bar in bars:
|
62 |
+
yval = bar.get_height()
|
63 |
+
ax1.text(bar.get_x() + bar.get_width() / 2, yval, int(yval),
|
64 |
+
ha='center', va='bottom', color='black') # Centered above the bar
|
65 |
+
|
66 |
+
# Adjust layout to give space for labels
|
67 |
+
plt.subplots_adjust(right=0.85) # Adjust right margin for space
|
68 |
+
|
69 |
st.pyplot(fig1)
|
70 |
|
71 |
+
|
72 |
# 2. Pie Chart for Category Distribution
|
73 |
st.subheader("Job Category Proportions")
|
74 |
+
fig2, ax2 = plt.subplots(figsize=(10, 10)) # Adjust the size as needed
|
75 |
+
wedges, texts, autotexts = ax2.pie(
|
76 |
+
category_counts,
|
77 |
+
labels=category_counts.index,
|
78 |
+
autopct='%1.1f%%',
|
79 |
+
startangle=140,
|
80 |
+
colors=plt.cm.Paired.colors # Optional: Change colors for better aesthetics
|
81 |
+
)
|
82 |
+
|
83 |
+
ax2.axis('equal') # Equal aspect ratio ensures the pie chart is circular.
|
84 |
+
|
85 |
+
# Customize the text labels
|
86 |
+
for text in texts:
|
87 |
+
text.set_fontsize(10) # Adjust font size for labels
|
88 |
+
for autotext in autotexts:
|
89 |
+
autotext.set_color('white') # Change the color of the percentage text
|
90 |
+
autotext.set_fontsize(10) # Adjust font size for percentage
|
91 |
+
|
92 |
+
# Add a legend to the right of the pie chart
|
93 |
+
ax2.legend(wedges, category_counts.index, title="Job Categories", loc="center left", bbox_to_anchor=(1, 0, 0.5, 1))
|
94 |
+
|
95 |
st.pyplot(fig2)
|
96 |
|
97 |
|
98 |
|
99 |
+
# 4. Top Job Titles Bar Plot
|
100 |
st.subheader("Top Job Titles")
|
101 |
top_job_titles = jobs_df[job_title_column].value_counts().head(10)
|
102 |
+
|
103 |
+
# Create the bar plot
|
104 |
+
fig4, ax4 = plt.subplots(figsize=(10, 6)) # Adjust figure size for better readability
|
105 |
+
bars = ax4.bar(top_job_titles.index, top_job_titles.values, color='lightcoral')
|
106 |
+
|
107 |
ax4.set_xlabel("Job Title")
|
108 |
ax4.set_ylabel("Count")
|
109 |
ax4.set_title("Top 10 Job Titles")
|
110 |
plt.xticks(rotation=45, ha="right")
|
111 |
+
|
112 |
+
# Add labels on the right side of the bars
|
113 |
+
for bar in bars:
|
114 |
+
yval = bar.get_height()
|
115 |
+
ax4.text(bar.get_x() + bar.get_width() / 2, yval, int(yval),ha='center', va='bottom', color='black') # Centered above the bar
|
116 |
+
|
117 |
+
# Adjust layout to give space for labels
|
118 |
+
plt.subplots_adjust(right=0.85) # Adjust right margin for space
|
119 |
+
|
120 |
st.pyplot(fig4)
|
121 |
|
122 |
+
|
123 |
# 5. Word Cloud for Job Descriptions
|
124 |
st.subheader("Word Cloud for Job Descriptions")
|
125 |
wordcloud = WordCloud(width=800, height=400, background_color='white').generate(' '.join(jobs_df[description_column].dropna()))
|