Import Data
read_csv()
is a function in the Python pandas
library used to import data from a CSV (Comma Separated Values) file into a pandas
DataFrame. The function requires the file path or a file object of the CSV file as its first argument.
Additional parameters can be specified to control how the data is read. For example, you can specify the delimiter used in the file, whether to treat the first row as headers with the header
parameter, or define column names directly using the names
parameter if the file does not contain headers.
Task
Swipe to start coding
- Import
pandas
with thepd
alias. - Read the CSV file into a
DataFrame
. - Display the first 5 rows of the dataset.
Solution
# Import the pandas library
import pandas as pd
# Read the CSV file
df = pd.read_csv('https://content-media-cdn.codefinity.com/projects/24d76e82-e376-49a2-947d-fc0e1a9b9bb7/spam_ham_dataset.csv')
# Display the first five rows
df.head()
Mark tasks as Completed
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 2
AVAILABLE TO ULTIMATE ONLY