Bir CSV dosyasını Pandalara nasıl aktarabileceğinizi görelim.
Yöntem 1: read_csv () yöntemini kullanarak.
# pandas modülü içe aktarma
içe aktarma pd olarak pandalar
# veri çerçevesi oluştur
df
=
pd.read_csv (
"< a href="https://media.python.engineering/wp-content/uploads/nba.csv" rel="nofollow noopener noreferrer" target="_blank"> https://media.python.engineering/wp-content /uploads /nba.csv "
)
df.head ( 10 )
Çıktı:

file_path sağlayın.
# pandaları pd olarak içe aktarın
import
pandaları pd olarak
code class = "comments"> # Dosya klasörünü kabul eder
filepath
=
r
"C: Gfgdatasets ba.csv"
# CSV dosyasını oku
df
=
pd.read_csv (filepath)
# ilk beş satırı yazdır
p>
yazdır (df.head())
Çıktı:
Yöntem # 2: csv
modülünü kullanma.
csv
dosyalarını csv
.
# modülü csv`ye içe aktarın
içe aktarın csv
import pandaları pd olarak
code class = "comments"> # csv dosyasını aç
ile aç (r " C: UsersAdminDownloads ba.csv " ) csv_file olarak: p>
# csv dosyasını oku
csv_reader = csv.reader (csv_file, sınırlayıcı = ` , ` )
# Artık bu CSV dosyalarını pandalarda kullanabiliriz
df = pd.DataFrame ([csv_reader], dizin = Yok )
df.head ()
# val
değerlerini tekrarlama class = "anahtar kelime"> listesinde (df [ 1 kod> ]):
yazdır (val) Çıktı: < img src = "http://espressocode.top/images/itgranrelscatercden638212.jpg" />
Shop
Learn programming in R: courses $
Best Python online courses for 2022 $
Best laptop for Fortnite $
Best laptop for Excel $
Best laptop for Solidworks $
Best laptop for Roblox $
Best computer for crypto mining $
Best laptop for Sims 4 $
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method
|