chore: add chart of supra competive pricing

This commit is contained in:
2026-02-02 12:03:30 +01:00
parent c4fd1352c9
commit 08c0afb55a
7 changed files with 4248 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
\begin{tikzpicture}
\begin{axis}[
view={0}{90}, % Top-down view for heatmap
xlabel={Step},
ylabel={Price},
colorbar,
colorbar style={
title={Density},
ylabel={},
},
colormap/viridis,
% Adjust these axis limits if necessary based on data
enlargelimits=false,
axis on top,
width=0.9\columnwidth,
height=0.6\columnwidth,
]
\addplot3[
surf,
shader=flat,
mesh/check=false % Disable check to rely on empty lines
] table [col sep=comma, x=step, y=price, z=density] {chapters/figures/supra_data.csv};
\end{axis}
\end{tikzpicture}