When I'm trying to do data profiling one sql server table by using pandas_profiling throwing an error like
An attempt has been made to start a new process before thecurrent process has finished its bootstrapping phase.
This probably means that you are not using fork to start yourchild processes and you have forgotten to use the proper idiomin the main module:if __name__ == '__main__':freeze_support()...The "freeze_support()" line can be omitted if the programis not going to be frozen to produce an executable.
This is the code which I'm using to run,I couldn't figure out how to resolve this issue.
import pandas as pd
import pandas_profilingdf=pd.DataFrame(read)
profile=pandas_profiling.ProfileReport(df)enter code here
I expect to see a profiling result of a given table: