Intro to Programming and Data Science (Fall 2021)/Day 9 Coding Challenges

From CommunityData
< Intro to Programming and Data Science (Fall 2021)
Revision as of 17:04, 16 July 2021 by Jdfoote (talk | contribs) (Copying content from previous class)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

In our earlier assignment, we played around with the Twitter API and you learned how to query APIs. In the project, we're going to try to move from this technical understanding to actually using APIs to answer real questions.

Do the following, in a Jupyter notebook:

The Question

Identify a question that Twitter data (or data gathered from another API) could help you to answer. Figure out a query that would gather that data.

  • Explain the question you would like to answer, and why it is interesting.
  • Describe the data that you would like to gather, the analysis on the data that you would like to perform, and why it would answer the question

Gathering Data

  • Save the raw data that Twitter returns in a .json file
  • Write code that filters the JSON data into what you are interested in and saves it as a CSV file.

Analysis

  • Come up with a visualization and/or statistical test that would help to answer your question.
  • Create that visualization or run that statistical test.