There's been a lot of hype in the news lately about cryptocurrency, so you want to take stock, so to speak, of the latest news headlines regarding Bitcoin and Ethereum to get a better feel for the current public sentiment around each coin.
In this assignment, you will apply natural language processing to understand the sentiment in the latest news articles featuring Bitcoin and Ethereum. You will also apply fundamental NLP techniques to better understand the other factors involved with the coin prices such as common words and phrases and organizations and entities mentioned in the articles.
Complete the following tasks:
Use the newsapi to pull the latest news articles for Bitcoin and Ethereum and create a DataFrame of sentiment scores for each coin.
Use descriptive statistics to answer the following questions:
Which coin had the highest mean positive score?
Which coin had the highest negative score?
Which coin had the highest positive score?
In this section, you will use NLTK and Python to tokenize text, find n-gram counts, and create word clouds for both coins.
Be sure to:
- Lowercase each word.
- Remove punctuation.
- Remove stop words.
Next, look at the ngrams and word frequency for each coin.
- Use NLTK to produce the ngrams for N = 2.
- List the top 10 words for each coin.
Finally, generate word clouds for each coin to summarize the news for each coin.
In this section, you will build a named entity recognition model for both coins and visualize the tags using SpaCy.
The free developer version of the News API limits the total daily requests, so be careful not to exceed the free limits.
-
Use the starter Jupyter Notebook provided to conduct the NLP analysis and host the notebook in a GitHub repository.
-
In your GitHub repository, include a ReadMe file that uses Markdown to summarize your homework.
-
Submit the link to your GitHub project to Bootcamp Spot.
- Determine the coin with Highest Mean Positive Score. (10 points)
- Determine the coin with Highest Negative Score. (10 points)
- Determine the coin with Highest Positive Score. (10 points)
- Use NLTK to lower case words, remove punctuation and remove stopwords. (8 points)
- Use NLTK to produce n-grams. (8 points)
- List the top 10 words for each Coin. (7 points)
- Generate a Word Cloud for each Coin summarizing the news for each Coin. (7 points)
- Build a Named Entity Recognition model for both coins - Bitcoin and Ethereum - and visualized the tags for each coin using SpaCy. (10 points)
- Place imports at the beginning of the file, just after any module comments and docstrings and before module globals and constants. (3 points)
- Name functions and variables with lowercase characters and with words separated by underscores. (2 points)
- Follow Don't Repeat Yourself (DRY) principles by creating maintainable and reusable code. (3 points)
- Use concise logic and creative engineering where possible. (2 points)
- Submit a link to a GitHub repository that’s cloned to your local machine and contains your files. (5 points)
- Include appropriate commit messages in your files. (5 points)
- Be well commented with concise, relevant notes that other developers can understand. (10 points)
© 2021 Trilogy Education Services, a 2U, Inc. brand. All Rights Reserved.