12345678910111213141516 |
- # Csar Fdez, UdL, 2025
- # Plots paper's bar plots of FSCore
- import matplotlib.pyplot as plt
- import numpy as np
-
- F={}
- for i in range(4,29,4):
- F[i]=np.ones(6)
- for i in range(4,29,4):
- for j in range(6):
- F[i][j]=np.random.uniform(0.8,1)
-
-
- # https://stackoverflow.com/questions/10369681/how-to-plot-bar-graphs-with-same-x-coordinates-side-by-side-dodged
-
- print(F)
|