Skip to content

Commit 32b5660

Browse files
committed
update
1 parent b7b0cd0 commit 32b5660

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

_episodes/05-seaborn-viz.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ my_fig.set_axis_labels('Weight (g)', 'Hindfoot Length (mm)')
167167
> Remember how to access subsets of a DataFrame based on conditional criteria?
168168
> Plot the scatter plot above for only plot number `12` and color by `sex`. (Make the markers larger circles.)
169169
>
170-
<!-- > > ## Solution
170+
> > ## Solution
171171
> >
172172
> > ~~~
173173
> > my_fig = sns.lmplot(x="weight", y="hindfoot_length",
@@ -180,7 +180,7 @@ my_fig.set_axis_labels('Weight (g)', 'Hindfoot Length (mm)')
180180
> > {: .python}
181181
> >
182182
> > ![png](../fig/05-seaborn-scatter-9.png)
183-
> {: .solution} -->
183+
> {: .solution}
184184
{: .challenge}
185185
186186
@@ -232,7 +232,7 @@ ax.set(ylabel='Species ID', xlabel='Weight (g)')
232232
> measurements for different sexed animals from a single
233233
> species, [*Onychomys leucogaster* (OL)](https://en.wikipedia.org/wiki/Northern_grasshopper_mouse), one of the coolest rodent species:
234234
>
235-
<!-- > > ## Solution
235+
> > ## Solution
236236
> >
237237
> > ~~~
238238
> > fig, ax = plt.subplots(figsize=plot_dims)
@@ -241,7 +241,7 @@ sns.violinplot(x='sex', y='weight', data=surveys_complete[surveys_complete.speci
241241
> > {: .python}
242242
> >
243243
> > ![png](../fig/05-seaborn-violinplot-2.png)
244-
> {: .solution} -->
244+
> {: .solution}
245245
{: .challenge}
246246
247247
# Histograms

0 commit comments

Comments
 (0)