Pandas - read_json
Cts 09 Temmuz 2022
read_json() Fonksiyonu Nedir? Nasıl Kullanılır?
read_json() fonksiyonu ile json uzantılı dosyaları çalışmalarınıza dahil edebilirsiniz.
veri_json = pd.read_json("Veri_Setleri/json_verisi.json")
print(veri_json)
| Duration | Pulse | Maxpulse | Calories | |
|---|---|---|---|---|
| 0 | 60 | 110 | 130 | 409 |
| 1 | 60 | 117 | 145 | 479 |
| 2 | 60 | 103 | 135 | 340 |
| 3 | 45 | 109 | 175 | 282 |
| 4 | 45 | 117 | 148 … |