<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Concept Map #2 by Ed Devine</title>
      <link>https://padlet.com/edevine31/1amx1txoxi4su6hm</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-11-28 18:44:21 UTC</pubDate>
      <lastBuildDate>2023-11-30 15:22:45 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Week 8, 9, 10: Python Next Steps</title>
         <author>edevine31</author>
         <link>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806213742</link>
         <description><![CDATA[<p>New Functions:</p><p>-String </p><p>str(), | Sequence of characters</p><p>-List </p><p>list() ["apple", "banana", "pear"], [1, 3, 5, 7] | Sequence of objects/values</p><p>-Dictionary </p><p>dict(), {} | {'first_name': 'Knute', 'last_name':'Rockne', 'class':'1918'} | Key-value pairs</p><p>-Set </p><p>set(), {} | {"apple", "banana", "pear"}, {1, 3, 5, 7} | Unordered group of unique values</p><p>-Tuple </p><p>tuple(), () | ("apple", "banana", "pear"), (1, 3, 5, 7) | Ordered group of values that can include duplicates</p><p>-Arrays</p><p>An array is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key.</p><p>-Dictionaries</p><p>A mapping between a set of indices (keys) and a set of values. Each key maps to a value, and the association of a key and a value is called a <strong>key-value pair</strong>.</p><p>-Index</p><p>In Python, <strong>indexing</strong> allows us to refer to individual values in specific data structures using their position.</p><p>ex. fruits = ["apple", "banana",]</p><p>-Iteration</p><p>In iteration control structures, a statement or block is executed until the program reaches a certain state, or operations have been applied to every element of a collection.</p><p>ex. # list of numbers</p><p>numbers = [1, 3, 5, 7, 9, 11, 13, 15, 17]</p><p># sample for loop that iterates over items in list and outputs each number</p><p>for number in numbers:</p><p> print(number)</p><p>-Lists</p><p>ex. # create list</p><p>fruits = ["apple", "banana", "peach"]</p><p># test if apple is in list</p><p>"apple" in fruits # returns true</p><p># test if blueberry is NOT in list</p><p>"blueberry" not in fruits # returns false</p><p>-Membership Operators</p><p>Membership operators are used to test if a sequence is presented in an object</p><p>ex. # create list</p><p>fruits = ["apple", "banana", "peach"]</p><p># test if apple is in list</p><p>"apple" in fruits # returns true</p><p># test if blueberry is NOT in list</p><p>"blueberry" not in fruits # returns false</p><p>-Sub-lists</p><p>ex. # create list with two sub-lists</p><p>points = [[0, 1], [2, 3]]</p><p># show list</p><p>points</p><p># access first item on list, which is a sublist</p><p>points[0]</p><p># access first item WITHIN second item on list</p><p>points[1][0]</p><p>-Break &amp; Continue</p><p>We can exit a loop immediately by using the break statement. break will stop or exit the while loop even if the condition is true. We can skip the rest of the body of a loop and move on to the next iteration using continue.</p><p>-Control Flow/Structures</p><p>if-then-else (syntax: if, else, elif)</p><p>while statements (syntax: while)</p><p>functions (built-in and named)</p><p>-Enumerate Function</p><p>Python function that generates a list of pairs containing each item in the list and its index</p><p>-Built in Functions</p><p>Functions that are readily available to use. </p><p>-Code Blocks</p><p>Or compound statement is a lexical structure of source code which is grouped together. </p><p>-Docstrings</p><p># function definition</p><p>def printThreeTimes():</p><p>&nbsp;'''Prints an input string three times'''</p><p>&nbsp; &nbsp; count = 0 # assign count</p><p>&nbsp; &nbsp; message = input("Type your message here: ") # get input message</p><p>&nbsp; &nbsp; while count &lt; 3: # while statement</p><p>&nbsp; &nbsp; &nbsp; &nbsp; print(message) # print message</p><p>&nbsp; &nbsp; &nbsp; &nbsp; count += 1 # reassign count</p><p>-Parameters, Scoping</p><p># assign x variable</p><p>x = 1</p><p># function definition</p><p>def print_number(x):</p><p>&nbsp;print(x)</p><p># print x variable</p><p>print(x)</p><p># call named function</p><p>print_number(2)<strong><br>Content Reflection Week 8:</strong></p><p>I think it has been interesting to see the development of possibilities of the computer and how the idea alone was enough to build it; however, no one could have possibly envisioned it would be so life changing. The computer has the ability to affect so many different aspects of our life under a wide range of conditions. In other words, who knew the invention of the computer would make a worldwide industry of post offices almost obsolete. Or what about how now we publish books digitally! You get the point. Computers have pervaded every little aspect of our life and they have changed the course of humanity. Whether that is a good or a bad thing, no one can say for sure.&nbsp;</p><p>So, when reading this article, it was very cool to see that the development of this species altering tool was headlined by a workforce of women. We often envision computer programmers and mathematicians as men. Which reminds me of the movie _____ about the “invention of the computer” by Alan Turing. In this movie, the development of computers would not have been possible without his partner who was a woman. I think this movie does a decent job of portraying the effect that women had on our technology while at the same time explaining the restrictions that society has always put on women in regard to seeing women as innovators.</p><p>As I am starting to gain a greater understanding of coding through this week's collaborative assignments, I am at the same time having trouble connecting the pieces we have learned together. I imagine that as I use the fundamental concepts we learned in the past two weeks more, I will continue to have a greater grasp on this new level of abstraction. I look forward to completing this coming week lab and think that because of the sheer number of questions on the lab that I will have adequate chances to shore my understanding.&nbsp;</p><p><strong>Content Reflection Week 9:</strong></p><p>I think the goal of building equitable algorithms is very important as we look to the future and the ever growing role that technology plays in our lives. Almost all the knowledge we consume go through the hands of algorithms and filters that change was we see and perceive. Most importantly it forms our decision making and thought processes, so the need for careful consideration of our algorithms is extremely important. On the same page, AI being an increasing factor. AI will continue to take human hands off the wheel and drive society more and more which is extremely scary thought. I hope and pray that the right people will be facing this challenge and focus in particular on creating unbiased AI's with correct morals so that our society can head in the right direction.&nbsp;</p><p>I enjoyed the continued coding lessons and am getting a greater feeling of accomplishment as the coding tasks get harder and more complex. I feel like I am gaining a good understanding of the material. However, I think there should be a space each week to go over certain questions on the labs that people are having trouble with. Perhaps go over those specific lab questions in class and discuss ways to complete the code. I think this would be more worth while than discussing the readings.&nbsp;</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2120213596/894bd951954acd773d08083e6597f401/image.webp" />
         <pubDate>2023-11-28 18:46:13 UTC</pubDate>
         <guid>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806213742</guid>
      </item>
      <item>
         <title>Week 11: Python Authoring Environment and Object-Oriented Programming Workflows</title>
         <author>edevine31</author>
         <link>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806218023</link>
         <description><![CDATA[<p>Authoring Environments:</p><p>IDE</p><p>-An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of at least a source code editor, build automation tools and a debugger.</p><p>Some common IDEs include Replit, Eclipse, Geany, Brackets, Atom, PyCharm, Spyder, RStudio</p><p>Anaconda</p><p>-An open-source distribution of the Python and R programming languages for scientific computing (data science, machine learning applications, large-scale data processing, predictive analytics, etc.), that aims to simplify package management and deployment. The distribution includes data-science packages suitable for Windows, Linux, and macOS. It is developed and maintained by Anaconda, Inc., which was founded by Peter Wang and Travis Oliphant in 2012</p><p>-The Anaconda environment includes a number of specific tools and programs, including:</p><ul><li><p>JupyterLab</p></li><li><p>Jupyter Notebook</p></li><li><p>Qt Console</p></li><li><p>Spyder</p></li><li><p>Glue</p></li><li><p>Orange</p></li><li><p>RStudio</p></li><li><p>Visual Code Studio</p></li></ul><p>Spyder</p><p>-Spyder is a free and open source scientific environment written in Python, for Python, and designed by and for scientists, engineers and data analysts. It features a unique combination of the advanced editing, analysis, debugging, and profiling functionality of a comprehensive development tool with the data exploration, interactive execution, deep inspection, and beautiful visualization capabilities of a scientific package</p><p>-Spyder's core components include:</p><ul><li><p>Editor</p></li><li><p>IPython console</p></li><li><p>Variable explorer</p></li><li><p>Plots</p></li><li><p>Debugger</p></li><li><p>Help</p></li></ul><p>Other Options</p><ul><li><p>Variable explorer, which lets you see named variables in your program</p></li><li><p>Help, which provides additional documentation, information, or resources</p></li><li><p>Plots, which will show visualizations generated by your program</p></li><li><p>Files, which will show all files currently open or active in your Spyder workspace</p></li></ul><p>The bottom-right pane is the Console, which lets you execute and test Python commands. You can have multiple consoles open simultaneously.</p><p><strong>Debugging (Common Python Errors)</strong></p><ul><li><p>Syntax refers to the structure of a program and rules about that structure. <strong><em>Syntax errors</em></strong> involve things like indentation, parenthesis, etc. The Python interpreter expects the language to be structured a specific way, and throws a syntax error when it's not.</p></li><li><p><strong><em>Runtime errors</em></strong>, or <strong><em>exceptions</em></strong>: appears after a program has started running. These errors indicate something unexpected has happened that interrupts or stops the program execution.</p><ul><li><p>Things that can cause a runtime error include:</p><ul><li><p>Misspelled or incorrectly capitalized variables or function names</p></li><li><p>Dividing by zero</p></li><li><p>Mismatched data types (i.e. attempting to perform operations on data of the wrong type)</p></li><li><p>Attempting to use a type conversion function on a value that can't be converted</p></li></ul></li></ul></li><li><p>Semantic: relates to meaning. <strong><em>Semantic errors</em></strong> have to do with the meaning (or purpose/intent) of your code. Semantic errors don't show up as error messages-but the program will not do what you expect it to do.</p></li></ul><p><strong>Stepwise Debugging in Spyder</strong></p><p>This mode of debugging includes the following possible steps or "moves":</p><ul><li><p>Continue (run the program until the next breakpoint)</p></li><li><p>Step in (executes the next line of code; if the next line of code is a function, the debugger will 'step into' the first line of that function)</p></li><li><p>Step over (executes the next line of code, but will not go line-by-line through the function; the debugger 'steps over' the function code and waits for the function call to return)</p></li><li><p>Step out (lets you step out of a function if you used step in and want to 'step out' of the function)</p></li><li><p>Stop (stops debugging and terminates the program)</p></li></ul><p><strong>Jupyter</strong></p><p>Project Jupyter is a non-profit, open-source project, born out of the IPython Project in 2014 as it evolved to support interactive data science and scientific computing across all programming languages. Jupyter will always be 100% open-source software, free for all to use and released under the liberal terms of the modified BSD license</p><p>There are three types of Jupyter notebook cells.</p><ul><li><p><strong><em>Code cells</em></strong> allow you to edit and write code with full syntax highlighting and tab completion.</p></li><li><p><strong><em>Markdown cells</em></strong> allow you to document the computational process using descriptive text formatted using the markdown language.</p></li><li><p><strong><em>Raw cells</em></strong> allow you to write output directly. These cells are not evaluated by the notebook and render unmodified. NOTE- not all notebook authoring environments support raw cells</p></li></ul><p>Content Reflection:</p><p>The coding lab this week was interesting for a few reasons: one reason was seeing the different IDE that are out there and the possibilities that can arise from each one. I enjoyed seeing the files and plot window that Spyder had integrated into it and can conceive senarios that those tools could be used. Even though I never fully figured out how to use them because when I saved a .py file into Spyder on my computer, the file would not appear when I was in the Spyder application. I also had trouble installing Python packages into Jupyter. This prevented me from completing the final portions of the lab and seeing the effects of the Python packages. Even so, I am excited to learn more about the IDEs and what they have to offer. It is nice to know that before these open-source IDEs were widespread, computer programmers had to have complete knowledge of computer to program anything, because they had to start from scratch, even coding the coding environment itself.&nbsp;</p><p>The second reason I found this weeks expansive explanation and tutorials on IDEs was seeing the advantages and disadvantages of different coding environments. I very much enjoyed the clear and concise route to debugging that Spyder offers, I think that will be a helpful tool in the future along with the easy implementation of files. The files feature offering direct access to the on-board files of my computer simplifies the process of exchanging code between IDEs. On the other hand, I can see the advantages of adding Python packages to Jupyter and the advantages of having pre-coded function in order to help with creating certain types of code. I am sure that simplifies the process tremendously. Finally, I understand the advantages of Replit, offering multitasking and sharing between peers. For group projects this simplifies the process and streamlines group computering. Very similar to how Google Docs allows simultaneous document editing compared to the supreme customization options of Microsoft Word.&nbsp;</p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2120213596/a1c9cd5dd16a112b15a3c944901c4795/Figure_1.png" />
         <pubDate>2023-11-28 18:49:17 UTC</pubDate>
         <guid>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806218023</guid>
      </item>
      <item>
         <title>Week 12: File I/O &amp; Structured Data in Python</title>
         <author>edevine31</author>
         <link>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806297788</link>
         <description><![CDATA[<p><strong>Access Modes</strong></p><p>"r" - Read - Opens a file for reading; also the default value</p><p>"a" - Append - Opens the file for appending new or additional information; Creates the file if it does not already exist</p><p>"w" - Write - Opens the file for writing new information; Creates the file if it does not already exist</p><p>"x" - Create - Creates the file if it does not already exist</p><p><strong>Type of Data Contained in a File</strong></p><p>"t" - Text - Treats file as text data, also the default value</p><p>"b" - Binary - Treats the file as binary data</p><p><strong>Linear Arrays</strong></p><p>In computer science, an array is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key...The simplest type of data structure is a linear array, also called one-dimensional array</p><p><strong>Associative Arrays</strong></p><p>Associative arrays are "an abstract data type that stores a collection of (key, value) pairs, such that each possible key appears at most once in the collection</p><p><strong>Delimited File</strong></p><p>A delimited file is a sequential file with column delimiters. Each delimited file is a stream of records, which consists of fields that are ordered by column. Each record contains fields for one row. Within each row, individual fields are separated by column delimiters. All fields must be delimited character strings, non-delimited character strings, or external numeric values.</p><p><strong>Delimiters</strong></p><p>Tab - Delimiter = "/t"</p><p>Space - Delimiter = " "</p><p>Pipe - Delimiter = "|"</p><p><strong>CSV Files</strong></p><p>CSV stands for "comma-separated values." CSV files are tabular data structures (i.e. a spreadsheet), stored in a plain-text format. In .csv files, each line represents a row in the spreadsheet, and commas separate cells in each row (thus the file format name comma-separated values).</p><p>A few characteristics that distinguish .csv files (or other plain-text delimited data formats) from proprietary spreadsheet file types:</p><ul><li><p>Columns in a .csv file don't have a value type. Everything is a string.</p></li><li><p>Values in a .csv file don't have font or color formatting</p></li><li><p>.csv files only contain single worksheets</p></li><li><p>.csv files don't store formatting information like cell width/height</p></li><li><p>.csv files don't recognize merged cells or other kinds of special formatting (frozen or hidden rows/columns, embedded images, etc.)</p></li></ul><p><strong>open()</strong></p><p>The open() function lets us open an existing file or create a new file in Python. For either version of open() (new file or existing file), we need to specify the file name (with the file type extension) and access mode.</p><p><strong>write()</strong></p><p>Now that we have a newly-created file in Python, we can use the write() function to <strong><em>write</em></strong> content to that file. Let's say we want to create a .txt (plain text) file and write a string to that file. We can do that using write().</p><p><strong>Read</strong></p><p>We'll also use the csv module to read or load an existing .csv file into Python. The csv module allows us to create a reader object that iterates over lines in a .csv file.</p><p><strong>JavaScript Object Notation</strong></p><p>JavaScript Object Notation (JSON) is as popular way to format data as a single (purportedly human-readable) string. JavaScript programs use JSON data structures, but we can frequently encounter JSON data outside of a JavaScript environment.</p><p>JSON data has the following attributes:</p><ul><li><p>uses name/value pairs</p></li><li><p>separates data using commas</p></li><li><p>holds objects using curly braces {}</p></li><li><p>holds arrays using square brackets []</p></li></ul><p>Values stored in JSON format must be one of the following data types:</p><ul><li><p>string</p></li><li><p>number</p></li><li><p>object (JSON object)</p></li><li><p>array</p></li><li><p>boolean</p></li><li><p>null</p></li></ul><p><strong>Reading JSON into Python</strong></p><p>We can read JSON into Python using the json module, which includes a few key functions for loading JSON data into Python:</p><ul><li><p>json.loads() takes a single string of JSON and loads it as a Python value</p></li><li><p>json.load() takes a JSON file (or file-like object) and loads it as a Python value</p></li><li><p>json.dumps() takes a Python value and transforms it to a JSON object.</p></li></ul><p><strong>Pandas</strong></p><p>a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language</p><p>pandas has two main data structures: Series and DataFrame.</p><ul><li><p>A Series is a one-dimensional, array-like object containing a sequence of values...and an associated array of data labels, called its index</p></li><li><p>A DataFrame includes a tabular data structure and contains an ordered collection of columns, each of which can be a different value type</p></li></ul><p>A Series is a one-dimensional, array-like object containing a sequence of values...and an associated array of data labels, called its index. At first glance, a Series looks a lot like a Python list.</p><p>A DataFrame includes a tabular data structure "and contains an ordered collection of columns, each of which can be a different value type</p><p><strong>Content Reflection:</strong></p><p>This week I really enjoyed learning about the ability to import modules. I thought it was cool how you can get third party, pre-coded functions and use them to simplify the coders job. At the same time, it adds another element to coding that I did not expect because each module has a language of its own being able to add delimiters. This added layer of language on top of the already trouble syntax involved in python is very intimidating to me. I can only imagine what its like knowing multiple coding languages and being able to understand every syntax that corresponds to which language.&nbsp;</p><p>Even so, I found the panda module to be particularly helpful in dealing will sets of data because most of the commands that correspond to panda are easy and intuitive to remember. I also enjoy the easy of changing the index of the columns or rows. I presume that I will run into some difficulties when trying to remember that the columns can be accessed through the .column_name whereas the rows have to access using their index value or name using the .loc command, which is not the most intuitive name.&nbsp;</p><p>This weeks reading informed me on the limits and dangers of AI in the future and further reinforced the notion that we must proceed with caution when releasing and testing AI's. Granted there will be growing pains, but with the power and grasp that AI's have on our lives will continue to increase. We as a society must make sure that these AI's are only benefiting our society and not crushing families like the Stipes. I think the best course of action is to create an FDA like entity that will rigorously test AI's that are being created and have decision's by them whether to release it.&nbsp;</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2120213596/b9498d27217bfec713580d422e14fe50/Screenshot_2023_11_28_150304.png" />
         <pubDate>2023-11-28 19:52:14 UTC</pubDate>
         <guid>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806297788</guid>
      </item>
      <item>
         <title>Week 13: Introduction to Web Scrapping and Text Processing </title>
         <author>edevine31</author>
         <link>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806492746</link>
         <description><![CDATA[<p><strong>Beautiful Soup</strong></p><p>Beautiful Soup is a Python library for pulling data out of HTML and XML files. It works with your favorite parser to provide idiomatic ways of navigating, searching, and modifying the parse tree. It commonly saves programmers hours or days of work.</p><p><strong>Load URL and Create a Beautiful Soup Object</strong></p><p>from bs4 import BeautifulSoup</p><p>import requests</p><p>page = requests.get('URL')</p><p>soup = BeautifulSoup(page.text, 'html.parser')</p><p><strong>HTML Tables</strong></p><p>When using BeautifulSoup, we can isolate information on the webpage through interacting with the HTML syntax. HTML uses a few core tags for web pages that include tables.</p><ul><li><p>table (marks the start and end of a table</p></li><li><p>tbody (marks the start and end of the table body)</p></li><li><p>tr (marks the start and end of each table row)</p></li><li><p>th (marks the start and end of each column in the first row of the table)</p></li><li><p>td (marks the start and end of each column after the first row of the table)</p></li></ul><p><strong>Table Structure</strong></p><p>&lt;table&gt;</p><p> &lt;tr&gt;</p><p>  &lt;th&gt;First Column Header&lt;/th&gt;</p><p>  &lt;th&gt;Second Column Header&lt;/th&gt;</p><p>  &lt;th&gt;Third Column Header&lt;/th&gt;</p><p> &lt;/tr&gt;</p><p> &lt;tr&gt;</p><p>  &lt;td&gt;Data in first column/first row&lt;/td&gt;</p><p>  &lt;td&gt;Data in second column/first row&lt;/td&gt;</p><p>  &lt;td&gt;Data in third column/first row&lt;/td&gt;</p><p> &lt;/tr&gt;</p><p> &lt;tr&gt;</p><p>  &lt;td&gt;Data in first column/second row&lt;/td&gt;</p><p>  &lt;td&gt;Data in second column/second row&lt;/td&gt;</p><p>  &lt;td&gt;Data in third column/second row&lt;/td&gt;</p><p> &lt;/tr&gt;</p><p>&lt;/table&gt;</p><p><strong>Extract Table</strong></p><p><strong># basic syntax for find</strong></p><p>soup.find("HTML TAG  GOES HERE")</p><p><strong># a specific example with the p tag</strong></p><p>soup.find("p")</p><p><strong>or</strong></p><p><strong># basic syntax for find_all, this time using a class instead of a tag</strong></p><p>soup.find_all(class_ = "CLASS NAME GOES HERE")</p><p><strong># a specific example using the wikitable sortable class</strong></p><p>tables = soup.find_all(class_ = 'wikitable sortable')</p><p><strong>#Isolate specific table</strong></p><p>table = tables[0]</p><p><strong># get all table rows</strong></p><p>rows = table.find_all("tr")</p><p><strong>#Iterate over rows in table</strong></p><p>table_rows = []

for row in table.find_all('tr'):
  tags = []
  cells = row.find_all(['td', 'th'])
  tags.append(cells)
  for cells in tags:
    try:
      season = cells[0].contents[0].find('a').contents[0]
      coach = cells[1].contents[0].find('a').contents[0]
      location = cells[2].contents[0].find('a').contents[0]
      opponent = cells[3].contents[0].find('a').contents[0]
      score = cells[4].contents[0].find('a').contents[0]

      row_data = [season, coach, location, opponent, score]

      table_rows.append(row_data)
    except:
      continue
table_rows
# create pandas dataframe
df = pd.DataFrame(table_rows, columns = ["Season", "Coach", "Location", "Opponent", "Score"])
# write to csv file
df.to_csv('eagles_data.csv', index = False)</p><p><br></p><p><strong>Content Reflection:</strong></p><p>The reading and topics for this week talk about equitable and fair approach to obtaining, accessing, distributing and interpreting data. The reading presents the ideological solution to reach this end where we should use data as a tool to improve human well-being and not to undermine human dignity. In the reading we learn about a study that was done at Hunter College High School where it was labeled the "saddest place in Manhattan" based on the analysis of tweets surrounding the school. The analysis used key words like sadness to create a frequency map where the school fell. In hindsight, there is obvious reasons why this analysis is fundamentally flawed. Just because people happened to use the word sadness more frequently, does not mean that a specific location in that area is the saddest place around. This study wrongly stigmatized the school and had a negative effect on public opinions of the school and its employees who feel the brunt of this negative publicity. Which was apparent when they interviewed the assistant principal who was publicly displayed and almost a figurehead of the school while having his name besmirched.&nbsp;</p><p>The collaborative problem this week was very interesting because it showed a wide range of possibilities to contort certain lists and raw data to see the data in a different way. Many of these functions like frequency and ngrams allow the user to interpret the data with context surrounding key words that are used in the data. I can see knowledge of these functions as an efficient way to decipher data and prevent misinterpretations that can cause human harm. I think it is important and almost obligatory that as the data scientists of the future we must know these functions and call on them accurately to correctly interpret data so that no unintended consequences and human harm comes from inaccurate data interpretation.&nbsp;</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2120213596/b18088b301d759bdb5ea6d4c1e7b6bca/1.jpg" />
         <pubDate>2023-11-28 23:56:53 UTC</pubDate>
         <guid>https://padlet.com/edevine31/1amx1txoxi4su6hm/wish/2806492746</guid>
      </item>
   </channel>
</rss>
