Ingen beskrivning

plotFScore_v5.py 374B

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

Powered by TurnKey Linux.