Document processing module
This commit is contained in:
parent
8307a54fe0
commit
3af0605449
|
@ -2,12 +2,18 @@ from app.preprocessing import create_dataframe, create_map
|
||||||
|
|
||||||
|
|
||||||
def create_table(df) -> str:
|
def create_table(df) -> str:
|
||||||
|
"""
|
||||||
|
Renders an HTML table from a DataFrame
|
||||||
|
"""
|
||||||
df.fillna(value=0, inplace=True)
|
df.fillna(value=0, inplace=True)
|
||||||
table = df.to_html(classes=["table-striped", "table-sm", "table-responsive"])
|
table = df.to_html(classes=["table-striped", "table-sm", "table-responsive"])
|
||||||
return table
|
return table
|
||||||
|
|
||||||
|
|
||||||
def process_data(dataset):
|
def process_data(dataset):
|
||||||
|
"""
|
||||||
|
Creates the DataFrame, produces a map and returns a table
|
||||||
|
"""
|
||||||
df = create_dataframe(dataset)
|
df = create_dataframe(dataset)
|
||||||
table = create_table(df)
|
table = create_table(df)
|
||||||
create_map(df)
|
create_map(df)
|
||||||
|
|
Loading…
Reference in New Issue