Scattertext-PyData
Scattertext-PyData copied to clipboard
Notebooks for the Seattle PyData 2017 talk on Scattertext
Hello, I use the Jupyter Notebook with my own data. When running the following part of the code ``` def normcdf(x): return norm.cdf(x, x.mean(), x.std()) term_freq_df['eight_precision_normcdf'] = normcdf(term_freq_df['eight_precision']) term_freq_df['eight_freq_pct_normcdf'] =...
This is great! How can one incorporate dimensionality reduction into the pipeline? For substantive and speed reasons, I'd like to exclude the most and least common words: corpus = st.CorpusFromPandas(df,...
I am trying to import scattertext on AWS SageMaker with a conda_python3 kernel. I downgraded numpy to 1.20.3 and installed a certain daal version based on the error messages. !pip...