You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In episode 05- Combining DataFrames with Pandas, on the section about Identifying join keys, the Python code asks us to call species_sub.columns this should probably be species_df.columns, as we did not create a species_sub in the lesson. Then in the next block of code in Inner Joins: merged_inner = pd.merge(left=survey_sub, right=species_sub, left_on='species_id', right_on='species_id') the inner join won't work ask expected unless species_sub is changed to species_df.
The text was updated successfully, but these errors were encountered:
In episode 05- Combining DataFrames with Pandas, on the section about Identifying join keys, the Python code asks us to call species_sub.columns this should probably be species_df.columns, as we did not create a species_sub in the lesson. Then in the next block of code in Inner Joins: merged_inner = pd.merge(left=survey_sub, right=species_sub, left_on='species_id', right_on='species_id') the inner join won't work ask expected unless species_sub is changed to species_df.
The text was updated successfully, but these errors were encountered: