Technically I finished the Pandas module today although I’m learning more and more that there’s a lot I have yet to understand about Pandas hah. I learned: You can .set_index(“column name”) of a dataset so the index number becomes any column you choose. Augmented assignments are a more efficient way of formatting code (usually byContinue reading “Python Day 43 – pandas indexes and augmented assignment”
Tag Archives: pandas
Python Day 42 – more pandas
Went through some more intro stuff with Pandas today… I learned: To import a CSV file with the pd.read_csv(“file path”) function. One can look at the shape of data with .shape operation (yay numpy!). To show data in reverse order put .sort_values(ascending=False). I’m still confused on: What exactly is the significance of figuring out theContinue reading “Python Day 42 – more pandas”
Python Day 41 – Pandas!!
Today I worked on a different course curated by my fantastic friend. We started out by going over broad view of the data science process, and delved in a bit with obtaining data and pandas. I learned: A majority of data science is collecting and cleaning data. Pandas is a module that allows for easierContinue reading “Python Day 41 – Pandas!!”
