Posts by Jhon Santos • 11 points
2 posts
-
1
votes1
answer24
viewsA: Third axis and graph python
Add this line to your code right after ax3 = ax.twinx() ax3.spines.right.set_position(("axes", 1.07)) Adjust the spacing if you want to keep the axis further or more glued to each other. For more…
-
-2
votes0
answers22
viewsQ: Uncertainties in linear regression coefficients in Python
How to find uncertainties in the coefficients of a linear regression using the function polyfit() of Numpy or the function curve_fit() of Scipy? I know how to find the coefficients, but I would like…