p2(visualise): better titles
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 45 KiB |
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',
|
||||
)
|
||||
|