Files
freeCodeCamp/curriculum/challenges/german/17-college-algebra-with-python/learn-linear-functions/linear-functions-extra.md
2023-03-10 15:55:06 +02:00

914 B

id, title, challengeType, videoId, dashedName
id title challengeType videoId dashedName
6331d283b51aeedd1a2bd64f Linear Functions: Extra 15 Emeex5gi5uA linear-functions-extra

--description--

This video will give you a deeper look into developing equations from word problems (so then you can write the code to solve or graph those equations). The video will also begin to look at data points as (x,y) coordinates. With this, you will begin to see the connection between Algebra and data science.

Here is the Colab notebook used in this video.

--question--

--text--

Which of the following would you not use when displaying a graph?

--answers--

ax.set_xlabel("x values")


ax.set_ylabel("y values")


ax.grid(True)


ax.set_table()

--video-solution--

4