We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a dataframe with 230000 rows and when I apply the empath lexicon it s taking a while to process. What is the best way to speed it up?
The main operation I have looks like:
from empath import Empath emp = Empath() analyze = lru_cache(maxsize=50000)(emp.analyze) all_posts['empath'] = all_posts.content.apply(lambda x: list(analyze(' '.join(x)).values()))
Where all_posts.content is a series of token lists
all_posts.content
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a dataframe with 230000 rows and when I apply the empath lexicon it s taking a while to process.
What is the best way to speed it up?
The main operation I have looks like:
Where
all_posts.content
is a series of token listsThe text was updated successfully, but these errors were encountered: