Зміст курсу
Time Series Essentials
Data Import
Methods description
pandas
: This module provides data structures and functions for working with structured data, primarily tabular data. It includes classes like DataFrame and Series for representing data, as well as functions for reading and writing data from various file formats;read_csv(filename)
: This method is used to read a CSV file and create a DataFrame from its contents;head(num_rows)
: This method is used to display the first few rows of the DataFrame. By default, it shows the first 5 rows, but you can specify the number of rows to display.
Завдання
- Import
pandas
aspd
. - Read the
"passengers_data.csv"
file. - Show the first 5 rows of the dataset.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Methods description
pandas
: This module provides data structures and functions for working with structured data, primarily tabular data. It includes classes like DataFrame and Series for representing data, as well as functions for reading and writing data from various file formats;read_csv(filename)
: This method is used to read a CSV file and create a DataFrame from its contents;head(num_rows)
: This method is used to display the first few rows of the DataFrame. By default, it shows the first 5 rows, but you can specify the number of rows to display.
Завдання
- Import
pandas
aspd
. - Read the
"passengers_data.csv"
file. - Show the first 5 rows of the dataset.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Секція 1. Розділ 2
AVAILABLE TO ULTIMATE ONLY