Leah Lee

Results 18 issues of Leah Lee

Here is some feedback for the workshop and I'd love to participate in improving the workshop! Presenter: - Excellent pacing and very clear explanation of complex concepts! - Multiple breaks...

We received a lot of questions about fit_transform and transform Having a dedicated section briefly explaining fit vs fit_transform vs transform (or link to a document/article) might be helpful for...

The solution for the lesson 3 is missing codes and should be updated with codes (for challenge 2 and maybe for 3)

Version issues: Some participants have issues with: data = data.dropna(subset='sex') Fixed by using: data = data.dropna(subset=['sex'])

Is there a link to the slides used in the regression lesson (not the introduction slides)?

Error with data.corr() in Exploratory Data Analysis: Error message: ValueError: could not convert string to float: 'chevrolet chevelle malibu' Solution: data.drop('car name',axis=1).corr()

Lesson 1, seaborn code "sns.histplot(data=gm_latest, x='gdpPercap');" results in error for data hub (I think this is a seaborn version issue)

In "Repeated measures" section for bar plots, had errors adding "errorbar" parameters