Skip to content

Commit c6e62fa

Browse files
author
StephenElston
committed
Fixed some typos
1 parent 10da86c commit c6e62fa

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

PerceptionAndVisualization/PerceptionAndVisualization.ipynb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
" - Line type,\n",
3838
" - Marker shape.\n",
3939
" \n",
40-
"3. **Plotting for multiple views:** Understanding complex datasets can require multiple views, sometimes even for the same relationship. These views can be as simple as a comparison plots or as plots which slice complex datasets into understandable projections. \n",
40+
"3. **Plotting with multiple views:** Understanding complex datasets can require multiple views, sometimes even for the same relationship. These views can be as simple as a comparison plots or as plots which slice complex datasets into understandable projections. \n",
4141
" - Comparing side by side plots of subsets of a complex data,\n",
4242
" - Pairwise scatter plots for visualization of pairwise combinations of the variables, \n",
4343
" - Faceted, conditioned or small multiple plots are all names for a method which produces visual slices through complex data. \n"
@@ -205,7 +205,6 @@
205205
" ## Convert some columns to numeric values\n",
206206
" for column in cols:\n",
207207
" auto_prices[column] = pd.to_numeric(auto_prices[column])\n",
208-
"# auto_prices[cols] = auto_prices[cols].as_type(int64)\n",
209208
" \n",
210209
" return auto_prices\n",
211210
"auto_prices = read_auto_data()"
@@ -382,7 +381,7 @@
382381
"- A **qualitative palette** is a palette of individual colors is used to display categorical values. We will address this case latter. \n",
383382
"- A **sequential and divergent palettes** is a sequence of colors used to display a quantitative variable. A sequential palette contains a color sequence of changing hue, which corresponds to values of a quantitative variable. A divergent palette has two sequences of hues with a gap in the center. Divergent palettes are useful for quantitative variables with positive and negative values. \n",
384383
"\n",
385-
"When doing data visualization in Python you have the choice of several sets of high quality sequential and divergent color palettes. [There is an extensive set of palette choices with Seaborn](https://seaborn.pydata.org/tutorial/color_palettes.html). Matplotlib contains a [another set of high quality palettes](https://matplotlib.org/3.1.1/tutorials/colors/colormaps.html). These Matplotlib options including **perceptually uniform palettes**, are expertly designed to optimize human perception. \n",
384+
"When doing data visualization in Python you have the choice of several sets of high quality sequential and divergent color palettes. [There is an extensive set of palette choices with Seaborn](https://seaborn.pydata.org/tutorial/color_palettes.html). Matplotlib contains a [another set of high quality palettes](https://matplotlib.org/3.1.1/tutorials/colors/colormaps.html). These Matplotlib options, including **perceptually uniform palettes**, are expertly designed to optimize human perception. \n",
386385
"\n",
387386
"The code in the cell below creates a scatter plot with vehicle price shown using the magma palette from Matplotlib. Magma uses lighter or 'hotter' colors to show larger values of a quantitative variable. Execute this code and examine the results. "
388387
]

0 commit comments

Comments
 (0)