Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Operations with the File | Explore Dataset
Introduction to Python for Data Analysis
セクション 3.  2
single

single

bookOperations with the File

メニューを表示するにはスワイプしてください

We are ready to continue!

Now we are going to learn how to:

  • Import libraries
  • Read files with the pandas
  • Create DataFrames.

Import libraries

Python is an ocean of libraries that serve various purposes, and as a Python developer, we must have sound knowledge of the best ones.

Books in every library are functions that can be used to perform different operations. Now we are going to work with the pandas library.

To import the library, use the following code:

import pandas as pd

pd alias is used for the ease of the work usually.

Creating the DF by reading the csv-file

There is a special function in the pandas - .read_csv(). The function helps to meet (read) the file (csv, xlsx, etc.). Pandas is the library that works with the DataFrames. DF is a structure made of your file. Sounds a little bit difficult? Don't worry! It only seems to be like that. To create the DataFrame from the csv-file, use the following code:

df = pd.read_csv('filename.csv')
タスク

スワイプしてコーディングを開始

Let's try to create the DataFrame by opening the csv-file.

  1. Import the pandas with the pd alias.
  2. Create the df variable and put the read csv-file into this variable.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  2
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt