Adding y_error to charts breaking data output
@mishushakov is already working on this.
Since Jun 23, 2025.
Assessment
This issue has not been assessed yet.
Description
Breaking example:
import matplotlib.pyplot as plt
import pandas as pd
# Create a simple DataFrame with an additional column for standard deviation (error)
data = {
"Category": ["A", "B", "C"],
"Value": [10, 15, 7],
"Std Dev": [1.5, 2.0, 0.8] # Example standard deviation values
}
df = pd.DataFrame(data)
# Create the bar plot with error bars (yerr)
plt.figure(figsize=(6, 4))
plt.bar(df["Category"], df["Value"], yerr=df["Std Dev"], capsize=5) # Added yerr and capsize
plt.xlabel("Category")
plt.ylabel("Value")
plt.title("Simplistic Bar Plot with Error Bars")
plt.tight_layout()
plt.show()
Working example:
import matplotlib.pyplot as plt
import pandas as pd
# Create a very simple DataFrame
data = {
"Category": ["A", "B", "C"],
"Value": [10, 15, 7]
}
df = pd.DataFrame(data)
# Create the bar plot without error bars
plt.figure(figsize=(6, 4))
plt.bar(df["Category"], df["Value"])
plt.xlabel("Category")
plt.ylabel("Value")
plt.title("Simplistic Bar Plot")
plt.tight_layout()
plt.show()
- Dominant language
- Python
- Stars
- 2.4k
- Forks
- 228
- Avg merge
- 48m
- Merged PRs (30d)
- 5
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from e2b-dev/code-interpreter
-
Difficulty 3/5 1-2 days Newbie friendliness 45/100
e2b-dev/code-interpreter#326 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 55/100
e2b-dev/code-interpreter#251 · 2 comments ·
-
Dependency Dashboard OpenChore Dashboard
Difficulty 5/5 Over a week Newbie friendliness 20/100
e2b-dev/code-interpreter#200 · 2 comments ·
-
feature SDK
Difficulty 5/5 Over a week Newbie friendliness 35/100
e2b-dev/code-interpreter#190 · 1 comment ·
-
Difficulty 5/5 Over a week Newbie friendliness 25/100
e2b-dev/code-interpreter#165 · 1 comment ·
All issues in e2b-dev/code-interpreter
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
syfoud/Simulated_Scepter#172 ·
-
A cancelled tests run makes the coverage comment workflow fail and reports it as a red check on main Openarea: ci bug perceived difficulty: 3
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
Nitjsefnie-Harness-Commons/daedalus#921 · 1 comment ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 86/100
EleutherAI/lm-evaluation-harness#4207 ·
-
Difficulty 1/5 Under an hour Newbie friendliness 92/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
ClickHouse/clickhouse-connect#1057 ·