#So my code looks like this but I have no idea how to extract y-values from the regression line or #maybe even show the equation of the curve.
import plotnine as p9 from scipy import stats
#calculate best fit line
slope, intercept, r_value, p_value, std_err = stats.linregress(df['gross_power'],df['temp_drop_a'])
df['fit']=df.gross_power*slope+intercept
#format text
txt= 'y = {:4.2e} x + {:4.2E}; R^2= {:2.2f}'.format(slope, intercept, r_value*r_value)
#create plot. The 'factor' is a nice trick to force a discrete color scale
plot=(p9.ggplot(data=df, mapping= p9.aes('gross_power','temp_drop_a'))
+ p9.geom_point(p9.aes())
+ p9.xlab('Gross Generation (MW)')+ p9.ylab(r'Air Heater Temperature Generator A (F)')
+ p9.geom_line(p9.aes(x='gross_power', y='fit'), color='red')
+ p9.annotate('text', x= 3, y = 35, label = txt))
print(plot)
Your code worked for me. What is the issue you are encountering?
Your predicted y-values is
fit
in your dataframe. You can extract the y-values as:To display the equation on the plot, use
annotate
as you have. Complete code:Perhaps there is an issue with
temp_drop_a
in your code. I don't know what this is and it doesn't appear on the source dataset. Also doesn't sound like a typical explanatory variable.