Skip to content

Commit 1ac3f9c

Browse files
authored
Update previous lesson link
1 parent 6d054af commit 1ac3f9c

File tree

1 file changed

+1
-1
lines changed
  • 2-Working-With-Data/08-data-preparation

1 file changed

+1
-1
lines changed

2-Working-With-Data/08-data-preparation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Depending on its source, raw data may contain some inconsistencies that will cau
3131
## Exploring DataFrame information
3232
> **Learning goal:** By the end of this subsection, you should be comfortable finding general information about the data stored in pandas DataFrames.
3333
34-
Once you have loaded your data into pandas, it will more likely than not be in a DataFrame(refer to the previous [lesson](https://github.com/IndraP24/Data-Science-For-Beginners/tree/main/2-Working-With-Data/07-python#dataframe) for detailed overview). However, if the data set in your DataFrame has 60,000 rows and 400 columns, how do you even begin to get a sense of what you're working with? Fortunately, [pandas](https://pandas.pydata.org/) provides some convenient tools to quickly look at overall information about a DataFrame in addition to the first few and last few rows.
34+
Once you have loaded your data into pandas, it will more likely than not be in a DataFrame(refer to the previous [lesson](https://github.com/microsoft/Data-Science-For-Beginners/tree/main/2-Working-With-Data/07-python#dataframe) for detailed overview). However, if the data set in your DataFrame has 60,000 rows and 400 columns, how do you even begin to get a sense of what you're working with? Fortunately, [pandas](https://pandas.pydata.org/) provides some convenient tools to quickly look at overall information about a DataFrame in addition to the first few and last few rows.
3535

3636
In order to explore this functionality, we will import the Python scikit-learn library and use an iconic dataset: the **Iris data set**.
3737

0 commit comments

Comments
 (0)