Search code examples
pythonpandasprofiling

Pandas ydata-profiling


I’m using ydata-profiling to profile a data set then I’m converting it to html using pandas to_html() this was working fine and all of a sudden it’s giving an error “TemplateSyntaxError: unexpected ‘end of statement block’”

I checked to_json and it’s working fine.


Solution

  • have you tried to use ".to_file('your_report.html')"? It should work, maybe there have been some changes in latest versions.

    (If you need help from developer of ydata-profling, you can use the tag "pandas-profling" for your requests)

    Simone