(col)
| 60 | |
| 61 | # Define function to normalize column into range [0,1] |
| 62 | def norm(col): |
| 63 | return (col - col.min()) / (col.max() - col.min()) |
| 64 | |
| 65 | for country, data in styledata.items(): |
| 66 | data["color"] = data["color"].apply(cmap) |
no outgoing calls
no test coverage detected
searching dependent graphs…