Ingesting and exploring data
Before you start modeling the Iris dataset, you need to understand what it contains. To do this, you’ll need to load the data into Python and use the Seaborn graphing library to visualize the data. Seaborn is easy to use and has several graph formats you can use to explore the data and see how it appears. When you do the visualization, you will also want to keep an eye out for problems in the data, such as missing values, values that don’t make sense, misspellings in text data, and so on. Once you have a comfortable understanding of how the data looks, you can move on to building a model. The Iris dataset comprises the numeric measurements of iris flower characteristics, accompanied by a column specifying the corresponding iris types. You will train a model to classify the type of iris flower based on the measurements of the petals and sepals. Next, you’ll get the data and bring it into a pandas DataFrame so that you can work with it...