Python Data Science Day 3
Today we continued to learn about data frames, and how to find things within them. We learned how to pull up a column in a data frame by using the format “data frame[‘column name’]”, and how to search through that column for a specific word by using “name = data frame[column name] == ‘specific word’, which was a boolean. Then we learned how to figure out which index the specific word was found in, and how to figure out words within a specific index.