Plotly Nonlinear Regression

In this Plotly tutorial, you will learn how to plot nonlinear regression in Python. You have to use the parameter trendline="lowess" for nonlinear regression.

# Import Plotly Module
import plotly.express as px

# Import Dataset
dataset = px.data.gapminder().query("continent=='Oceania'")

# Nonlinear Regression
plot = px.scatter(dataset, x="gdpPercap", y="lifeExp", trendline="lowess")

# Show the Plot
plot.show()

Output:

Plotly Nonlinear Regression

Free learning resources: AiHintsCodeAllow

Leave a Comment

Your email address will not be published.