fixing a missing output

This commit is contained in:
Jonathan Taylor
2023-08-15 11:49:42 -07:00
parent 1bf5d926b9
commit 065a1ae993
2 changed files with 475 additions and 485 deletions

View File

@@ -1303,8 +1303,8 @@ The plot methods of a data frame return a familiar object:
an axes. We can use it to update the plot as we did previously:
```{python}
ax = Auto.plot.scatter('horsepower', 'mpg');
ax.set_title('Horsepower vs. MPG')
ax = Auto.plot.scatter('horsepower', 'mpg')
ax.set_title('Horsepower vs. MPG');
```
If we want to save
the figure that contains a given axes, we can find the relevant figure

File diff suppressed because one or more lines are too long