Challenge: Visualize and Highlight Outliers
Swipe to start coding
Given a DataFrame containing transaction data, your task is to generate two plots: a scatter plot of transaction amounts over time, and a boxplot of transaction amounts grouped by customer. Outliers in the scatter plot should be highlighted in red.
- Generate a scatter plot of the
Amountcolumn versus theDatecolumn. - Use the interquartile range (IQR) method to identify outliers in the
Amountcolumn. - Highlight outlier points in red on the scatter plot.
- Generate a boxplot of transaction amounts, grouped by the
CustomerIDcolumn.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you explain this in simpler terms?
What are the main benefits or drawbacks?
Can you give me a real-world example?
Awesome!
Completion rate improved to 4.76
Challenge: Visualize and Highlight Outliers
Swipe to show menu
Swipe to start coding
Given a DataFrame containing transaction data, your task is to generate two plots: a scatter plot of transaction amounts over time, and a boxplot of transaction amounts grouped by customer. Outliers in the scatter plot should be highlighted in red.
- Generate a scatter plot of the
Amountcolumn versus theDatecolumn. - Use the interquartile range (IQR) method to identify outliers in the
Amountcolumn. - Highlight outlier points in red on the scatter plot.
- Generate a boxplot of transaction amounts, grouped by the
CustomerIDcolumn.
Solution
Thanks for your feedback!
single