Read and format data
-# Include and execute your code here
plot example
+# Include and execute your code here
+
+
+ (=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
+ ggplot(data+ geom_point()
+ )
My useless chart
Question|Task 2
-COPY PASTE QUESTION|TASK 2 FROM THE PROJECT HERE
--
-
- include figures in chunks and discuss your findings in the figure. -
plot example
# Include and execute your code here
- (=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
- ggplot(data+ geom_point()
- )
My useless chart
plot example
# Include and execute your code here
-
-
- (
- ggplot(=penguins,
- data=aes(x="flipper_length_mm", y="body_mass_g", color="species"),
- mapping
- )+ geom_point()
+
+ (
+ ggplot(=penguins,
+ data=aes(x="flipper_length_mm", y="body_mass_g", color="species"),
+ mapping
+ )+ geom_point()
+ + geom_smooth(method="lm")
)
My useless chart
plot example
# Include and execute your code here
- (
- ggplot(=penguins,
- data=aes(x="flipper_length_mm", y="body_mass_g", color="species"),
- mapping
- )+ geom_point()
- + geom_smooth(method="lm")
- )
My useless chart
plot example
# Include and execute your code here
(=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
- ggplot(data+ geom_point(mapping=aes(color="species"))
+ + geom_point(mapping=aes(color="species", shape="species"))
+ geom_smooth(method="lm")
)
My useless chart
plot example
# Include and execute your code here
(=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
- ggplot(data+ geom_point(mapping=aes(color="species", shape="species"))
+ + geom_point(aes(color="species", shape="species"))
+ geom_smooth(method="lm")
- )
My useless chart
-plot example
-# Include and execute your code here
-
- (=penguins, mapping=aes(x="flipper_length_mm", y="body_mass_g"))
- ggplot(data+ geom_point(aes(color="species", shape="species"))
- + geom_smooth(method="lm")
- + labs(
- ="Body mass and flipper length",
- title="Dimensions for Adelie, Chinstrap, and Gentoo Penguins",
- subtitle="Flipper length (mm)",
- x="Body mass (g)",
- y="Species",
- color="Species",
- shape
- ) )
My useless chart
Question|Task 3
+Question|Task 2
COPY PASTE QUESTION|TASK 3 FROM THE PROJECT HERE
- PROVIDE TABLES THAT HELP ADDRESS THE QUESTIONS AND TASKS (IF APPLICABLE).
table example
-# Include and execute your code here
- penguins.head()
# Include and execute your code here
+ penguins.head()
Question|Task 3
table example
-# Include and execute your code here
-= (penguins.head(1000)
- mypenguins 'species')
- .groupby(=True)
- .mean(numeric_only
- .reset_index()filter(["species", "bill_length_mm", "bill_depth_mm", "flipper_length_mm", "body_mass_g"])
- .
- )
- display(mypenguins)
# Include and execute your code here
+= (penguins.head(1000)
+ mypenguins 'species')
+ .groupby(=True)
+ .mean(numeric_only
+ .reset_index()filter(["species", "bill_length_mm", "bill_depth_mm", "flipper_length_mm", "body_mass_g"])
+ .
+ )
+ display(mypenguins)