Analyze Performance Metrics
Example Prompt:
Example Response:
Related Tasks:
Create Performance Improvement Reports
Example Prompt:
Example Response:
Related Tasks:
Prepare Communication for Stakeholders
Example Prompt:
Example Response:
Related Tasks:
Identify Process Improvement Opportunities
Example Prompt:
Example Response:
Related Tasks:
Create Visualizations for Data Insights
Example Prompt:
Example Response:
import pandas as pd
import matplotlib.pyplot as plt
# Load the dataset
file_path = 'path_to_your_dataset.csv'
data = pd.read_csv(file_path)
# Assuming the dataset has columns 'Category' and 'Values'
# Adjust the column names based on your dataset
# Grouping the data by 'Category' and summing the 'Values'
grouped_data = data.groupby('Category')['Values'].sum().reset_index()
# Creating the bar chart
plt.figure(figsize=(10, 6))
plt.bar(grouped_data['Category'], grouped_data['Values'], color='skyblue')
plt.title('Bar Chart of Values by Category')
plt.xlabel('Category')
plt.ylabel('Values')
plt.xticks(rotation=45)
plt.tight_layout()
# Show the plot
plt.show()
Related Tasks: