You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pandas as pd
from occupationcoder.coder import coder
myCoder = coder.Coder()
if __name__ == '__main__':
df = pd.read_csv('construction.csv')
df['job_sector'] = "Construction & Property"
df = myCoder.codedataframe(df)
df.head()
construction.csv is a relatively large file. It has approx. 40K row.
When we try to run the code with 'construction.csv', it hangs and never finishes. I think that it can be related with dask multithread count, however couldn't find the solution. I'll be glad if you can help me. Have a nice day :)
The text was updated successfully, but these errors were encountered:
Description
Here the output:
We run this snippet:
construction.csv is a relatively large file. It has approx. 40K row.
When we try to run the code with 'construction.csv', it hangs and never finishes. I think that it can be related with dask multithread count, however couldn't find the solution. I'll be glad if you can help me. Have a nice day :)
The text was updated successfully, but these errors were encountered: