p2(visualise): better titles

This commit is contained in:
leo 2023-02-27 04:05:29 +01:00
parent cad05f6864
commit 9aaf015fac
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ
5 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 47 KiB

@ -58,7 +58,7 @@ plt.clf()
acr=pd.read_csv('data/autocorrelation_u.csv')
lp = sb.lineplot(data=acr, legend=False, linewidth=2.5)
lp.set(
title='Autocorrelation U',
title='Autocorrelation of u (Ruu)',
xlabel='shift',
ylabel='Ruu',
)
@ -70,7 +70,7 @@ plt.clf()
acr=pd.read_csv('data/autocorrelation_y.csv')
lp = sb.lineplot(data=acr, legend=False, linewidth=2.5)
lp.set(
title='Autocorrelation Y',
title='Autocorrelation of y (Ryy)',
xlabel='shift',
ylabel='Ryy',
)
@ -82,7 +82,7 @@ plt.clf()
mcr=pd.read_csv('data/mutual_correlation_uy.csv')
lp = sb.lineplot(data=mcr, legend=False, linewidth=2.5)
lp.set(
title='Mutual correlation UY',
title='Mutual correlation of uy (Ruy)',
xlabel='shift',
ylabel='Ruy',
)
@ -94,7 +94,7 @@ plt.clf()
mcr=pd.read_csv('data/mutual_correlation_yu.csv')
lp = sb.lineplot(data=mcr, legend=False, linewidth=2.5)
lp.set(
title='Mutual correlation YU',
title='Mutual correlation of yu (Ryu)',
xlabel='shift',
ylabel='Ryu',
)