I generated an interactive output file using the auto visualization tool - 'Pandas Profiling'. There's a sentence at the bottom of the page that I want to remove.
This is my report generation code -->
def pand_prof_fun(eda_file, savepath):
profile = ProfileReport(eda_file)
# Activating the widgets
profile.to_widgets()
profile.to_notebook_iframe()
# Saving & generating the report
pp.ProfileReport(eda_file)
profile.to_file(savepath)
profile = ProfileReport(eda_file, title="My Data Profile Report")
return profile
The output gets stored in a file that is in HTML format, but the HTML code cannot be accessed. Is there a way to remove the footer from the file?