mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 06:14:45 +00:00
Add generated CSV and table generator
This commit is contained in:
parent
b522c1e4d2
commit
c7f9960895
33
.azure/i18n-coverage-table/generate-i18n-coverage-table.py
Normal file
33
.azure/i18n-coverage-table/generate-i18n-coverage-table.py
Normal file
@ -0,0 +1,33 @@
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
#make this example reproducible
|
||||
np.random.seed(0)
|
||||
|
||||
#define figure and axes
|
||||
fig, ax = plt.subplots()
|
||||
|
||||
#hide the axes
|
||||
fig.patch.set_visible(False)
|
||||
ax.axis('off')
|
||||
ax.axis('tight')
|
||||
|
||||
#read data
|
||||
df = pd.read_csv('i18n-coverage.csv')
|
||||
#create table
|
||||
table = ax.table(cellText=df.values, colLabels=df.columns, loc='center')
|
||||
|
||||
#display table
|
||||
fig.tight_layout()
|
||||
#plt.show()
|
||||
|
||||
ax.set_title('Loss by Disaster')
|
||||
|
||||
fig = plt.gcf()
|
||||
|
||||
|
||||
plt.savefig('pyplot-table-original.png',
|
||||
bbox_inches='tight',
|
||||
dpi=150
|
||||
)
|
5
i18n-coverage.csv
Normal file
5
i18n-coverage.csv
Normal file
@ -0,0 +1,5 @@
|
||||
Locale,Complete #,Complete %
|
||||
de,860,78%
|
||||
es,731,66%
|
||||
ja,910,82%
|
||||
nl,853,77%
|
|
Loading…
x
Reference in New Issue
Block a user