From 5d62b67c6669e9a1a603f759c3a4dc7e7857353d Mon Sep 17 00:00:00 2001 From: Michael Chen Date: Thu, 27 Oct 2022 18:21:42 +0200 Subject: [PATCH] Finished exercise 1 --- .../1. Introduction Julia/Julia Intro - exercise.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/exercise/1. Introduction Julia/Julia Intro - exercise.jl b/exercise/1. Introduction Julia/Julia Intro - exercise.jl index 557ebe4..f73c8eb 100644 --- a/exercise/1. Introduction Julia/Julia Intro - exercise.jl +++ b/exercise/1. Introduction Julia/Julia Intro - exercise.jl @@ -373,7 +373,7 @@ md""" """ # ╔═╡ 4a8f3088-6f98-11eb-1d0e-4b1ba2e676ae -missing +plot(z) # ╔═╡ 50cc4f32-6f98-11eb-25a4-ebaf581955ea md""" @@ -382,7 +382,7 @@ md""" """ # ╔═╡ 56177258-6f98-11eb-276f-7d8053bdcb86 -missing +plot(y,z) # ╔═╡ 5733a026-6f98-11eb-1b50-c75f87fbabe5 md""" @@ -391,7 +391,7 @@ md""" """ # ╔═╡ 5d770eb4-6f98-11eb-3206-8d26f2717981 -missing +plot(x,y,z) # ╔═╡ 6824d1f2-6f98-11eb-12f1-adf1271af917 md""" @@ -402,7 +402,7 @@ Arguments are interpreted flexible. We have already seen that we can plot `x`, w """ # ╔═╡ 6debc444-6f98-11eb-3c9e-4dc533fe13ec -missing +plot(x, exp) # ╔═╡ 77d17b00-6f98-11eb-37ad-dd347db13fb3 md""" @@ -416,7 +416,7 @@ Data can be plotted together as series, as is the default. There are different s @bind seriestype1 Select(["line" => :line,"path" => :path, "steppre" => :steppre, "steppost" => :steppost, "sticks" => :sticks, "scatter" => :scatter]) # ╔═╡ 8f566768-6f98-11eb-20ae-45d6f39cd210 -plot(y,z, seriestype=seriestype1) +plot(y,z, seriestype=seriestype1, color = :green) # ╔═╡ 961e9cd2-6f98-11eb-362c-517edab85a8c md"""