Posts by felipevzps • 31 points
3 posts
-
0
votes1
answer107
viewsA: matplotlib -> Could not load source '<__array_function__Internals>': Source unavailable
I was looking for answers and apparently this is a process error in the graph generation. The fix was simple: keep running the code and update with F5. Explained answer:…
-
0
votes1
answer107
viewsQ: matplotlib -> Could not load source '<__array_function__Internals>': Source unavailable
I am having this problem when using plt.show() or plt.savefig('/path'): The same error occurs when I try to plot a simple graph: import matplotlib.pyplot as plt plt.stackplot(range(4), [2, 2, 2, 2],…
-
2
votes1
answer125
viewsQ: Easy counting between columns - Python
I’m starting in python and have trouble automating some calculations. I have a Dataframe with 8 columns [A, B, C, D, E, F, G, H] and 150 rows. I need to count how many times 2 columns are equal to…