redfernstech commited on
Commit
7d789af
·
verified ·
1 Parent(s): 5af7007

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ elif option == "Plots":
53
 
54
  # Create the bar plot
55
  fig1, ax1 = plt.subplots(figsize=(10, 6)) # Set figure size
56
- bars = ax1.bar(category_counts.index, category_counts.values, color=colors[:len(category_counts)])
57
 
58
  ax1.set_xlabel("Job Category")
59
  ax1.set_ylabel("Number of Jobs")
 
53
 
54
  # Create the bar plot
55
  fig1, ax1 = plt.subplots(figsize=(10, 6)) # Set figure size
56
+ bars = ax1.bar(range(len(category_counts)), category_counts.values, color=colors[:len(category_counts)])
57
 
58
  ax1.set_xlabel("Job Category")
59
  ax1.set_ylabel("Number of Jobs")