Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Basic Understanding of the Linear Regression | What is the Linear Regression?
Explore the Linear Regression Using Python

bookBasic Understanding of the Linear Regression

Welcome to the course! Today we will start by investigating one of the most popular conceptions in machine learning - linear regression. We will be digging into this simple supervised learning model using some well-known libraries of Python, which you probably already know.

Let's start!

So what is regression? Before answering this question, let's look at the following scatter plot below. For example, we have done the research, got some data, then visualized it and plotted it on our graph.

We intuitively want to add a line to see what the trend is. But which one would best visualize our dependence? Blue? Green? Or maybe black?

To find the correct answer, we need to use a learning model - linear regression. Let's find out the meaning of this method. Linear regression is an approach for modelling the relationship between variables that you operate in research, finding mathematically the straight line to your data (if we are talking about two-dimensional graphs) to predict future values.

Let's express the equation of this desired line for our plot (so that in the future, we operate with numbers and not with colors on the graph):

Where b is the intercept and k is the slope of the line. x is an independent variable (input), whereas y is our output. Our goal is to find this k and b.

Tarefa

Swipe to start coding

You have a simple dataset of the dependence of the height of Abyssinian cats on their weight (values of arrays x and y respectively).

  1. [Line #2] Import the library matplotlib.pyplotto build the plot.
  2. [Lines #9-10] Using the linear regression we have found the straight line which expresses dependencies of variables, the slope, and the intercept are 0.93 and -3.97 respectively. Build this line.
  3. [Line #25] Display the plot.

Solução

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 1
single

single

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Suggested prompts:

Resumir este capítulo

Explicar o código em file

Explicar por que file não resolve a tarefa

close

Awesome!

Completion rate improved to 4.76

bookBasic Understanding of the Linear Regression

Deslize para mostrar o menu

Welcome to the course! Today we will start by investigating one of the most popular conceptions in machine learning - linear regression. We will be digging into this simple supervised learning model using some well-known libraries of Python, which you probably already know.

Let's start!

So what is regression? Before answering this question, let's look at the following scatter plot below. For example, we have done the research, got some data, then visualized it and plotted it on our graph.

We intuitively want to add a line to see what the trend is. But which one would best visualize our dependence? Blue? Green? Or maybe black?

To find the correct answer, we need to use a learning model - linear regression. Let's find out the meaning of this method. Linear regression is an approach for modelling the relationship between variables that you operate in research, finding mathematically the straight line to your data (if we are talking about two-dimensional graphs) to predict future values.

Let's express the equation of this desired line for our plot (so that in the future, we operate with numbers and not with colors on the graph):

Where b is the intercept and k is the slope of the line. x is an independent variable (input), whereas y is our output. Our goal is to find this k and b.

Tarefa

Swipe to start coding

You have a simple dataset of the dependence of the height of Abyssinian cats on their weight (values of arrays x and y respectively).

  1. [Line #2] Import the library matplotlib.pyplotto build the plot.
  2. [Lines #9-10] Using the linear regression we have found the straight line which expresses dependencies of variables, the slope, and the intercept are 0.93 and -3.97 respectively. Build this line.
  3. [Line #25] Display the plot.

Solução

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

close

Awesome!

Completion rate improved to 4.76
Seção 1. Capítulo 1
single

single

some-alt