#python #html #python-3.x #django #python-2.7
#python #HTML #python-3.x #django #python-2.7
Вопрос:
Приведенный ниже код отлично работает на python, но как передать значения параметров из html?
import pandas as pd
import pandas_profiling
# read the file
df = pd.read_csv('Dataprofile.csv')
# run the profile report
profile = df.profile_report(title='Pandas Profiling Report')
# save the report as html file
profile.to_file(output_file="pandas_profiling1.html")
# save the report as json file
profile.to_file(output_file="pandas_profiling2.json")
Ответ №1:
Вместо to_file используйте to_html. df.to_html(«Table.html «) Вы можете оформить его с помощью CSS в HTML-файле.