Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Basic Understanding of the Linear Regression | What is the Linear Regression?
/
Explore the Linear Regression Using Python
セクション 1.  1
single

single

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.

タスク

スワイプしてコーディングを開始

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.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  1
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt