Skip to content

Commit

Permalink
Utiliser tail à la place de head
Browse files Browse the repository at this point in the history
  • Loading branch information
plstonge committed Jan 31, 2025
1 parent b20a69e commit ae4feb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion en/04-combine.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
"# Use pivot_table() instead of unstack()\n",
"pivot_taxa_sex_site = ntaxa_sex_site.pivot_table(\n",
" values='taxa', columns='sex', index=ntaxa_sex_site.index)\n",
"pivot_taxa_sex_site.head()"
"pivot_taxa_sex_site.tail()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion solution-en/04-combine.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
"# Use pivot_table() instead of unstack()\n",
"pivot_taxa_sex_site = ntaxa_sex_site.pivot_table(\n",
" values='taxa', columns='sex', index=ntaxa_sex_site.index)\n",
"pivot_taxa_sex_site.head()"
"pivot_taxa_sex_site.tail()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/04-combine.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@
"# Use pivot_table() instead of unstack()\n",
"pivot_taxa_sex_site = ntaxa_sex_site.pivot_table(\n",
" values='taxa', columns='sex', index=ntaxa_sex_site.index)\n",
"pivot_taxa_sex_site.head()"
"pivot_taxa_sex_site.tail()"
]
},
{
Expand Down

0 comments on commit ae4feb7

Please sign in to comment.