TUM-Thesis/graphics/plots/errorrates_changerate.typ
2024-07-25 20:07:20 +02:00

16 lines
441 B
Typst

#import "@preview/cetz:0.2.2": canvas, plot
#let dashed = (stroke: (dash: "dashed"))
#canvas({
plot.plot(size: (10,4),
x-tick-step: none,
x-ticks: ((1, [1]), (2, [2]), (3, [3]), (4, [4]), (5, [5]), (6, [6])),
y-label: $(x_"1" (m)) / (x_"100" (m))$,
x-label: $m$,
y-tick-step: 500,
axis-style: "left",
x-min: 0,
{
plot.add(((1,1815.2), (2,660), (3,46), (4,3.11), (5,1.33), (6,1.07)), mark: "o")
})
})