e2b-dev / e2b-dev/code-interpreter
Single-class box plot doesn't return any data
Open
@mishushakov is already working on this.
Since Jun 4, 2025.
bug
Code Interpreter
- Dominant language
- Python
- Stars
- 2.4k
- Forks
- 228
- Avg merge
- 48m
- Merged PRs (30d)
- 5
Description
Not working snippet:
import matplotlib.pyplot as plt
import numpy as np
data = np.random.randn(100)
bp = plt.boxplot(data, patch_artist=True)
plt.show()
Working snippet:
import matplotlib.pyplot as plt
import numpy as np
data = np.random.randn(100)
data2 = np.random.randn(20)
bp = plt.boxplot([data,data2], patch_artist=True)
plt.show()
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.
Assessment
This issue has not been assessed yet.