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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user