All our Data Science projects include bite-sized activities to test your knowledge and practice in an environment with constant feedback.
All our activities include solutions with explanations on how they work and why we chose them.
Create a histogram to visualize the distribution of bike counts from the bike_df
dataset. This visualization will provide insights into the frequency and spread of bike usage, enabling you to analyze patterns in bike count data.
Your task includes ensuring that the histogram is properly labeled and titled for clarity.
(10,8)
as your plot sizeCreate a series of box plots to explore the distribution of bike counts ('cnt') across different seasons using the bike_df
dataset. This analysis will help you understand how bike usage varies with the seasons, highlighting trends and outliers in bike counts for each season.
Your task is to ensure that each box plot is correctly labeled and the overall figure is titled for clear interpretation. A custom palette has been predefined for you, pass it as an argument when plotting your chart.
Create a scatter plot to visualize the relationship between the total count of bike rentals ('cnt') and the temperature ('temp') using the bike_df
dataset. This visualization will enable you to analyze how changes in temperature relate to the usage of bikes, potentially revealing trends or patterns in bike rentals depending on temperature variations.
Your task involves generating a clear and informative scatter plot. We will guide you in setting up the labels and title for the plot.
Create a scatter plot to examine the relationship between the number of casual bike rentals ('casual') and the temperature ('temp'), differentiated by season, using the bike_df
dataset. This visualization will help you explore how temperature affects casual bike usage and how this pattern varies with the seasons.
Your task is to generate a scatter plot with dual-color coding to represent different seasons. We will guide you in setting up the labels and title for the plot. A custom color set has been predefined for you, pass it as an argument when plotting your chart.
red
if season is 1, blue
if season is 2, green
if season is 3, and orange
if season is 4.