Editing Community Data Science Course (Spring 2023)/Week 3 lecture notes

From CommunityData
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 13: Line 13:
* For example: once you log into Reddit, you can get all posts about almost anything ([https://developer.twitter.com/en/docs/geo/place-information/api-reference/get-geo-id-place_id Twitter API Docs])
* For example: once you log into Reddit, you can get all posts about almost anything ([https://developer.twitter.com/en/docs/geo/place-information/api-reference/get-geo-id-place_id Twitter API Docs])


==Programming lecture outline==
==Programming lecture==


* Dictionaries!
* Dictionaries!
Line 32: Line 32:
** ''Note:'' These can be useful in combination to if statements and can also be super useful for debugging!
** ''Note:'' These can be useful in combination to if statements and can also be super useful for debugging!
* Writing to files:
* Writing to files:
** Using the <code>open("whatever.tsv", "w")</code> function
** Using the open() function
** Using the <code>with open() as my_file:</code> statement
** Using the with statement
** Writing to a file with <code>print(file=my_file)</code>
** Writing to a file with print(file=my_file)
** Writing a tab-separated value file using "\t" (make sure we leave a header!)
** Writing a tab-separated value file using "\t" (make sure we leave a header!)
** Now lets open it up and make a little graph
** Now lets open it up and make a little graph
Line 41: Line 41:
** Looking at StackOverflow
** Looking at StackOverflow
** Walking through the Python API documentation
** Walking through the Python API documentation
** Using a reference card or cheatsheet
** Using a referece card or cheatsheet


== Resources and Example Code ==
====Initialization====
===Initialization===


  >>> my_dict = {}
  >>> my_dict = {}
Line 53: Line 52:
  {'Bob': 'strawberry', 'Cara': 'mint chip', 'Alice': 'chocolate'}
  {'Bob': 'strawberry', 'Cara': 'mint chip', 'Alice': 'chocolate'}


===Adding elements to a dictionary===
====Adding elements to a dictionary====


  >>> your_dict["Dora"] = "vanilla"
  >>> your_dict["Dora"] = "vanilla"
Line 59: Line 58:
  {'Bob': 'strawberry', 'Cara': 'mint chip', 'Dora': 'vanilla', 'Alice': 'chocolate'}
  {'Bob': 'strawberry', 'Cara': 'mint chip', 'Dora': 'vanilla', 'Alice': 'chocolate'}


===Accessing elements of a dictionary===
====Accessing elements of a dictionary====


  >>> your_dict["Alice"]
  >>> your_dict["Alice"]
Line 83: Line 82:
  'chocolate'
  'chocolate'


===Changing elements of a dictionary===
====Changing elements of a dictionary====


  >>> your_dict["Alice"] = "coconut"
  >>> your_dict["Alice"] = "coconut"
Line 89: Line 88:
  {'Bob': 'strawberry', 'Cara': 'mint chip', 'Dora': 'vanilla', 'Alice': 'coconut'}
  {'Bob': 'strawberry', 'Cara': 'mint chip', 'Dora': 'vanilla', 'Alice': 'coconut'}


==="Histograms"===
====Histograms====


'''Challenge''': using wordplay example from last week, count the number of words that start with each letter.  
'''Challenge''': using wordplay example from last week, count the number of words that start with each letter.  
Line 97: Line 96:
(note: I will post the solution after class)
(note: I will post the solution after class)


===For-loops and dictionaries===
====For-loops and dictionaries====


There are two common ways to iterate through dictionaries:
There are two common ways to iterate through dictionaries:
Please note that all contributions to CommunityData are considered to be released under the Attribution-Share Alike 3.0 Unported (see CommunityData:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel Editing help (opens in new window)