Skip to content

Commit 2f0fc75

Browse files
committed
addedmore
1 parent bae3cd4 commit 2f0fc75

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
@@ -162,7 +162,7 @@ my_fig.set_axis_labels('Weight (g)', 'Hindfoot Length (mm)')
162162
> Remember how to access subsets of a DataFrame based on conditional criteria?
163163
> Plot the scatter plot above for only plot number `12` and color by `sex`. (Make the markers larger circles.)
164164
>
165-
> > ## Solution
165+
<!-- > > ## Solution
166166
> >
167167
> > ~~~
168168
> > my_fig = sns.lmplot("weight", "hindfoot_length", data=surveys_complete[surveys_complete.plot_id == 12],
@@ -173,7 +173,7 @@ my_fig.set_axis_labels('Weight (g)', 'Hindfoot Length (mm)')
173173
> > {: .python}
174174
> >
175175
> > ![png](../fig/05-seaborn-scatter-9.png)
176-
> {: .solution}
176+
> {: .solution} -->
177177
{: .challenge}
178178
179179
@@ -224,7 +224,7 @@ ax.set(ylabel='Species ID', xlabel='Weight (g)')
224224
> measurements for different sexed animals from a single
225225
> species, [*Onychomys leucogaster* (OL)](https://en.wikipedia.org/wiki/Northern_grasshopper_mouse), one of the coolest rodent species:
226226
>
227-
> > ## Solution
227+
<!-- > > ## Solution
228228
> >
229229
> > ~~~
230230
> > fig, ax = plt.subplots(figsize=plot_dims)
@@ -233,7 +233,7 @@ sns.violinplot(x = 'sex', y = 'weight', data=surveys_complete[surveys_complete.s
233233
> > {: .python}
234234
> >
235235
> > ![png](../fig/05-seaborn-violinplot-2.png)
236-
> {: .solution}
236+
> {: .solution} -->
237237
{: .challenge}
238238
239239
# Histograms

0 commit comments

Comments
 (0)