1
0
mirror of https://gitlab.com/Anson-Projects/projects.git synced 2025-09-13 09:05:01 +00:00

fix image scaling

This commit is contained in:
2021-05-03 21:54:09 -07:00
parent bd67c9682a
commit 3da697bfeb
10 changed files with 22 additions and 26 deletions

View File

@@ -126,7 +126,6 @@ plot(df.Time .|> ustrip, thrust_values,
fillalpha=.2,label="Thrust",
xlabel="Time (s)",
ylabel="Thrust (N)",
size = (1200, 800),
)
```
@@ -139,7 +138,7 @@ f15 = CSV.read("Estes_F15.csv", DataFrame);
g8 = CSV.read("AeroTech_G8ST.csv", DataFrame);
plot(air.Time, air.Thrust, label="Air Propulsion", fillalpha=.1, legend=:topleft, size = (1200, 800));
plot(air.Time, air.Thrust, label="Air Propulsion", legend=:topleft);
for (d, l) in [(f10, "F10"), (f15, "F15"), (g8, "G8ST")]
plot!(d[!,"Time (s)"], d[!, "Thrust (N)"], label=l);