We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75ef262 commit 5f50b14Copy full SHA for 5f50b14
Chapter13/README.md
@@ -98,3 +98,6 @@ What do we mean when we say that a series approximates a function?
98
99
## [Review 10](review/10.txt)
100
Why would you sketch out the layout of a graph before writing the code to draw it?
101
+
102
+## [Review 11](review/11.txt)
103
+How would you scale your graph so that the input will fit?
Chapter13/review/11.txt
@@ -0,0 +1,5 @@
1
+For two-dimensional graphs, we need to scale the x and y axes to make our inputs fit.
2
+We can get a scaling factor by dividing the size of the given axis
3
+with the range of the corresponding dataset.
4
+Then we can align the input data to a coordinate by subtracting the minimal value from it,
5
+multiplying that with the scale, and adding it to the given axis' starting coordinate.
0 commit comments