Ünite 09 - Python'da Veri Dosyası Okuma

preview_player
Показать описание

Giriş (os Modülü):(0:00)
Düz Dosyaları Okuma:(1:55)
Excel Dosyalarını Okuma:(26:36)
SAS / Stata Dosyalarını Okuma:(34:09)
MATLAB Dosyalarını Okuma:(38:48)
Web Ortamından Veri Okuma:(40:50)

Python'da csv dosyası okuma
Python'da txt dosyası okuma
Python'da Excel dosyası okuma
Python'da MATLAB dosyası okuma
Python'da SAS dosyası okuma
Python'da STATA dosyası okuma
Python'da Web'den dosya okuma
Рекомендации по теме
Комментарии
Автор

Teşekkür ederim. Günlerdir arıyorum bunu 🤦‍♂️

necatufak
Автор

hocam 9. ünitede sizin verilerinizi çağırdıgımızda sonuçlar geliyor, ancak ben verilerin bulundugu klasöre yeni bir csv dosyası ekleyip aynı yöntem ile onu çağırdıgımda hata veriyor nedeni konusunda yardımcı olabilr misiniz?çok teşekkür ederim..Saygılar..

UnicodeDecodeError Traceback (most recent call last)
pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf4 in position 1: invalid continuation byte

During handling of the above exception, another exception occurred:

UnicodeDecodeError Traceback (most recent call last)
in <module>
6
7 # Veri çerçevesini (DataFrame) oluşturalım. pd.read_csv(dosya) yöntemi ile csv dosyaları okunur.
----> 8 df_cevre = pd.read_csv(dosya1)
9
10 # Veri çerçevesinin ilk beş satırını .head() yöntemi ile ekrana verelim

in parser_f(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, squeeze, prefix, mangle_dupe_cols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, dialect, error_bad_lines, warn_bad_lines, delim_whitespace, low_memory, memory_map, float_precision)
674 )
675
--> 676 return _read(filepath_or_buffer, kwds)
677
678 parser_f.__name__ = name

in _read(filepath_or_buffer, kwds)
452
453 try:
--> 454 data = parser.read(nrows)
455 finally:
456 parser.close()

in read(self, nrows)
1131 def read(self, nrows=None):
1132 nrows = _validate_integer("nrows", nrows)
-> 1133 ret = self._engine.read(nrows)
1134
1135 # May alter columns / col_dict

in read(self, nrows)
2035 def read(self, nrows=None):
2036 try:
-> 2037 data = self._reader.read(nrows)
2038 except StopIteration:
2039 if self._first_chunk:

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

pandas\_libs\parsers.pyx in

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf4 in position 1: invalid continuation byte

sevincgunes