Luonnonvarojen käyttö ja tasa-arvoinen koulutus#
Sukupuolten välinen tasa-arvo on maailmanlaajuisesti yksi UNESCO:n päätavoitteista. Vaikkakin tämän osalta ollaan otettu isoja edistysaskelia, epätasa-arvoa esiintyy esimerkiksi koulutuksessa monissa eri yhteyksissä. Koulutus tarjoaa lapsille mahdollisuuden vaikuttaa tulevaisuuteensa ja olla osana yhteiskuntaa. Vaikka mahdollisuus laadukkaaseen koulutukseen on ihmisoikeusasia, sillä on myös vaikutusta siihen, minkälaiseksi meidän maailma ja yhteiskunnat kehittyvät. Tyttöjen koulutukseen panostamisella onkin merkittäviä vaikutuksia erityisesti kehittyvissä maissa, sillä se mahdollistaa esimerkiksi nopeamman kehityksen ja hillitsee väestönkasvua.
Luonnonvarojen ja fossiilisten polttoaineiden käyttö on mahdollistanut valtioiden rikastumisen ja nopean kehityksen. Tutkimusten mukaan naisten koulutus on yksi merkittävistä tekijöistä, joka selittää valtioiden eroja sosiaalisen ja tauloudellisen kehityksen osalta [1], ja jolla on tutkitusti positiivinen korrelaatio molempiin [2][3]. Tämän pohjlta voidaankin tarkastella lähemmin sitä, onko valtioiden fossiilisten polttoaineiden kulutuksen myötä mahdollistettu myös tyttöjen pääsyä perusopetusta vastaavaan koulutukseen.
Osio 1. Datasettien valinta#
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
Ratio girls/boys in school, primary and secondary education (%) -datasetti on otettu täältä.
Maakohtainen suhdeluku siitä, missä suhteessa poikia ja tyttöjä osallistuu perusopetusta vastaavaan opetukseen.
Consumption CO2 per capita -datasetti on otettu täältä.
Maakohtaiset tiedot siitä, kuinka paljon fossiilisten polttoaineiden kulutuksesta, sementin valmistuksesta ja maakaasun soihduttamisesta on aiheutunut CO2-päästöjä yhtä asukasta kohden. Tässä luvussa on otettu huomioon maan vienti ja tuonti. Taulukossa annetut luvut ovat tonnia/henkilö.
Fossil fuel consumption per capita -datasetti on otettu täältä.
Maakohtaiset tiedot fossiilisten polttoaineiden kulutuksesta laskettuna yhtä asukasta kohden. Taulukko sisältää öljyn, maakaasun ja kivihiilen kulutukset kilowattitunneissa [kWh].
# Ladataan käyttöön muutama aiheen kannalta kiinnostava datasetti read_csv()-komennolla.
lasten_koulutus = pd.read_csv('https://raw.githubusercontent.com/opendata-education/Tyopajat/main/materiaali/data/ratio_of_girls_to_boys_in_primary_and_secondary_education_perc.csv')
co2_kulutus = pd.read_csv('https://raw.githubusercontent.com/opendata-education/Tyopajat/main/materiaali/data/consumption_emissions_tonnes_per_person.csv')
fossiiliset_polttoaineet_data = pd.read_csv('https://raw.githubusercontent.com/opendata-education/Tyopajat/main/materiaali/data/fossil-fuel-cons-per-capita.csv')
# Kurkataan yhden datasetin sisään head()-komennon avulla, jotta tiedetään minkä kanssa työskennellään.
# Voit itse katsoa myös muiden datasettien sisälle.
# Saat myös lisää rivejä käyttöön, jos laitat komennon sulkeisiin esimerkiksi (20). Tällöin näytetään
# 20 ensimmäistä riviä.
co2_kulutus.head()
country | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | ... | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Albania | 1.71 | 1.39 | 0.875 | 0.824 | 0.729 | 0.792 | 0.926 | 0.707 | 0.808 | ... | 2.04 | 2.14 | 2.08 | 2.17 | 2.08 | 2.02 | 2.17 | 1.96 | 1.90 | 1.96 |
1 | United Arab Emirates | 30.20 | 31.50 | 30.900 | 31.400 | 32.800 | 31.100 | 30.800 | 29.500 | 32.700 | ... | 34.50 | 25.20 | 22.70 | 24.20 | 26.10 | 26.70 | 27.70 | 24.80 | 25.00 | 24.80 |
2 | Argentina | 3.20 | 3.40 | 3.520 | 3.420 | 3.480 | 3.490 | 3.670 | 3.820 | 3.830 | ... | 4.41 | 4.07 | 4.33 | 4.47 | 4.48 | 4.58 | 4.62 | 4.70 | 4.60 | 4.59 |
3 | Armenia | 3.87 | 3.83 | 1.200 | 0.592 | 0.590 | 0.881 | 0.975 | 1.320 | 1.360 | ... | 2.24 | 2.05 | 1.92 | 1.99 | 2.20 | 2.13 | 2.10 | 1.93 | 1.94 | 1.89 |
4 | Australia | 13.90 | 13.60 | 13.600 | 13.500 | 13.700 | 13.900 | 13.900 | 14.200 | 14.800 | ... | 17.20 | 17.30 | 17.30 | 17.30 | 17.50 | 16.40 | 15.90 | 15.60 | 15.40 | 15.40 |
5 rows × 29 columns
lasten_koulutus.head(50)
country | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | ... | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Aruba | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 1.020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Afghanistan | 0.1670 | 0.161 | 0.161 | 0.169 | 0.167 | 0.174 | 0.181 | 0.192 | 0.199 | ... | 0.669 | 0.655 | 0.654 | 0.642 | 0.646 | 0.642 | 0.636 | NaN | NaN | NaN |
2 | Angola | NaN | 0.640 | 0.657 | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Albania | NaN | NaN | NaN | NaN | NaN | NaN | 0.923 | NaN | 0.925 | ... | 0.990 | 0.982 | 0.977 | 0.982 | 0.994 | 1.000 | 1.020 | 1.020 | 1.020 | NaN |
4 | Andorra | NaN | NaN | NaN | NaN | NaN | 1.150 | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | United Arab Emirates | NaN | NaN | NaN | 0.829 | 0.926 | 0.934 | 0.944 | 1.010 | 1.050 | ... | NaN | NaN | NaN | NaN | 0.961 | 0.948 | NaN | 0.994 | 1.010 | NaN |
6 | Argentina | 1.0300 | 1.020 | 1.010 | 1.010 | 1.010 | 1.010 | 1.010 | 1.020 | 1.030 | ... | 1.030 | 1.030 | 1.030 | 1.030 | 1.020 | 1.020 | 1.020 | 1.020 | NaN | NaN |
7 | Armenia | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | 1.030 | 1.040 | 1.040 | NaN | NaN | 1.020 | 1.030 | 1.030 | NaN |
8 | American Samoa | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Antigua and Barbuda | NaN | NaN | NaN | NaN | 1.170 | 1.040 | NaN | 1.040 | 0.840 | ... | 1.040 | NaN | 0.974 | 0.990 | NaN | 0.979 | 0.979 | NaN | NaN | NaN |
10 | Australia | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | 0.925 | 0.925 | 0.938 | 0.969 | 0.964 | NaN | NaN |
11 | Austria | NaN | 0.936 | NaN | NaN | NaN | NaN | 0.925 | NaN | NaN | ... | 0.972 | 0.973 | 0.972 | 0.973 | 0.972 | 0.972 | 0.974 | 0.981 | NaN | NaN |
12 | Azerbaijan | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | 1.000 | 1.010 | 1.010 | NaN |
13 | Burundi | NaN | 0.470 | 0.483 | 0.541 | 0.566 | 0.575 | 0.594 | 0.610 | 0.605 | ... | 0.964 | 0.972 | 0.993 | 1.000 | 1.010 | 1.020 | 1.030 | 1.040 | NaN | 1.060 |
14 | Belgium | NaN | 0.984 | 0.982 | 0.997 | 0.991 | 0.995 | 0.996 | 1.000 | 1.010 | ... | 1.080 | 1.080 | 1.080 | 1.080 | 1.070 | 1.070 | 1.070 | 1.080 | NaN | NaN |
15 | Benin | NaN | 0.446 | NaN | 0.455 | 0.446 | 0.445 | NaN | 0.440 | NaN | ... | NaN | 0.835 | 0.848 | 0.859 | 0.877 | NaN | NaN | NaN | 0.890 | NaN |
16 | Burkina Faso | NaN | 0.568 | 0.579 | 0.586 | 0.590 | 0.596 | 0.590 | 0.577 | NaN | ... | 0.915 | 0.937 | 0.948 | 0.960 | 0.971 | 0.982 | 0.989 | 1.010 | 1.020 | NaN |
17 | Bangladesh | NaN | NaN | NaN | 0.501 | NaN | NaN | 0.499 | 0.527 | NaN | ... | NaN | NaN | NaN | NaN | NaN | 1.120 | 1.120 | NaN | 1.150 | NaN |
18 | Bulgaria | NaN | 0.987 | 0.992 | 0.994 | 0.996 | 1.000 | 0.984 | 0.996 | 0.986 | ... | 0.970 | 0.967 | 0.975 | 0.975 | 0.976 | 0.981 | 0.977 | 0.985 | NaN | NaN |
19 | Bahrain | NaN | 0.730 | 0.771 | 0.789 | 0.806 | 0.816 | 0.828 | 0.838 | 0.844 | ... | 1.010 | 1.010 | 1.010 | 1.000 | 1.010 | 1.010 | 1.020 | 1.040 | NaN | NaN |
20 | Bahamas | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Belarus | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 0.977 | 0.984 | 0.989 | 0.991 | 0.991 | 0.989 | 0.991 | NaN | NaN | NaN |
22 | Belize | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 0.990 | 0.990 | 0.990 | 0.982 | 0.978 | 0.992 | 0.988 | 0.989 | 0.991 | NaN |
23 | Bermuda | NaN | 1.070 | 1.060 | 1.030 | 1.030 | 1.020 | 1.010 | 1.020 | 1.020 | ... | 1.060 | 1.070 | 1.050 | 1.050 | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Bolivia | NaN | 0.765 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 0.991 | 0.986 | 0.984 | 0.982 | 0.982 | 0.983 | 0.985 | 0.988 | NaN | NaN |
25 | Brazil | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 1.030 | 1.030 | 1.030 | 1.020 | 1.020 | 1.000 | 1.010 | 1.010 | NaN | NaN |
26 | Barbados | NaN | 0.992 | 1.000 | 1.010 | 0.906 | 0.967 | 1.050 | 1.050 | 1.030 | ... | NaN | NaN | 1.020 | 1.010 | 1.020 | 1.000 | 1.000 | 0.999 | 1.000 | NaN |
27 | Brunei | 0.9350 | 0.929 | 0.936 | 0.943 | 0.945 | 0.950 | 0.968 | 0.988 | 0.995 | ... | 1.010 | 1.020 | 1.010 | 1.010 | 1.010 | 1.010 | 1.020 | 1.020 | 1.020 | NaN |
28 | Bhutan | 0.0527 | 0.229 | 0.207 | NaN | 0.287 | NaN | NaN | 0.373 | NaN | ... | 1.040 | 1.040 | 1.040 | 1.040 | 1.050 | 1.050 | 1.060 | NaN | NaN | NaN |
29 | Botswana | 1.0900 | 1.100 | 1.120 | 1.150 | 1.180 | 1.200 | 1.200 | 1.200 | 1.180 | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Central African Republic | NaN | 0.462 | 0.462 | 0.470 | NaN | NaN | 0.514 | 0.503 | 0.500 | ... | 0.714 | NaN | NaN | NaN | 0.761 | NaN | NaN | NaN | NaN | NaN |
31 | Canada | NaN | 0.990 | 0.992 | 0.994 | 1.000 | 0.999 | 1.010 | 1.010 | 1.010 | ... | 1.000 | 1.010 | 1.010 | 1.010 | 1.010 | 1.010 | 1.000 | 1.000 | NaN | NaN |
32 | Switzerland | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 0.929 | ... | 0.983 | 0.985 | NaN | 0.979 | 0.976 | 0.973 | 0.970 | 0.969 | NaN | NaN |
33 | Chile | 1.0100 | 1.000 | 1.000 | 1.010 | 1.010 | 1.010 | 1.020 | 1.010 | 1.010 | ... | 1.000 | 0.990 | 0.989 | 0.989 | 0.989 | 0.988 | 0.986 | 0.982 | NaN | NaN |
34 | China | NaN | NaN | NaN | NaN | NaN | NaN | 0.821 | 0.826 | 0.830 | ... | 0.997 | 1.010 | 1.010 | 1.010 | 1.010 | 1.010 | 1.010 | 1.020 | 1.010 | NaN |
35 | Cote d'Ivoire | NaN | 0.538 | 0.545 | 0.551 | 0.556 | NaN | NaN | NaN | NaN | ... | NaN | NaN | 0.808 | 0.818 | 0.834 | 0.851 | 0.868 | 0.884 | 0.898 | NaN |
36 | Cameroon | NaN | 0.712 | 0.732 | 0.740 | 0.751 | 0.753 | 0.764 | 0.772 | 0.775 | ... | 0.869 | NaN | 0.877 | 0.883 | 0.886 | NaN | NaN | NaN | NaN | NaN |
37 | Congo, Dem. Rep. | NaN | 0.553 | 0.575 | 0.591 | 0.619 | 0.609 | 0.613 | 0.621 | 0.619 | ... | 0.801 | 0.828 | 0.829 | 0.889 | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Congo, Rep. | NaN | 0.733 | 0.753 | 0.768 | 0.764 | 0.778 | 0.787 | 0.796 | 0.819 | ... | 1.000 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Colombia | 1.0100 | 1.010 | 1.020 | 1.020 | 1.020 | 1.020 | 1.030 | 1.020 | 1.030 | ... | 1.030 | 1.030 | 1.020 | 1.020 | 1.020 | 1.010 | 1.010 | 1.010 | NaN | NaN |
40 | Comoros | NaN | 0.457 | NaN | 0.498 | NaN | NaN | NaN | NaN | NaN | ... | NaN | 0.975 | 0.980 | NaN | NaN | 0.993 | 1.020 | NaN | NaN | NaN |
41 | Cape Verde | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 1.040 | 1.030 | 1.020 | 1.010 | 1.010 | 1.010 | 1.010 | 1.010 | NaN | NaN |
42 | Costa Rica | 0.9990 | 1.000 | 1.010 | 1.010 | 1.010 | 1.010 | 1.020 | 1.020 | NaN | ... | 1.010 | 1.020 | 1.020 | 1.020 | 1.030 | 1.040 | 1.040 | 1.040 | 1.050 | NaN |
43 | Cuba | NaN | NaN | 0.957 | 0.951 | 0.948 | 0.945 | NaN | NaN | 0.961 | ... | 0.997 | 0.992 | 0.983 | 0.985 | 0.991 | 0.985 | 0.987 | 0.988 | 0.989 | NaN |
44 | Cayman Islands | NaN | NaN | 1.210 | 1.110 | 1.120 | 1.120 | 1.110 | 1.070 | NaN | ... | 1.010 | 1.020 | NaN | NaN | NaN | NaN | 0.988 | NaN | 1.000 | NaN |
45 | Cyprus | NaN | 0.962 | 0.968 | 0.974 | 0.980 | 0.963 | 0.975 | 0.979 | 0.990 | ... | 1.010 | 1.000 | 1.000 | 0.996 | 0.995 | 0.993 | 0.983 | 0.981 | NaN | NaN |
46 | Czech Republic | NaN | 1.030 | 1.030 | 1.030 | 1.030 | 1.030 | 1.030 | 1.030 | 1.030 | ... | 1.000 | 1.000 | 1.000 | 1.010 | 1.010 | 1.010 | 1.000 | 1.010 | NaN | NaN |
47 | Germany | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | 0.961 | 0.964 | 0.965 | 0.966 | 0.964 | 0.958 | 0.961 | 0.965 | NaN | NaN |
48 | Djibouti | NaN | 0.421 | NaN | 0.494 | 0.527 | 0.544 | 0.519 | NaN | NaN | ... | 0.993 | 0.983 | 1.000 | 1.010 | 1.010 | 1.030 | 1.010 | 1.020 | 1.000 | 0.973 |
49 | Dominica | NaN | NaN | NaN | 1.070 | 1.130 | 1.130 | 1.090 | 1.140 | 1.120 | ... | NaN | NaN | 0.996 | 0.986 | NaN | NaN | NaN | 0.992 | 0.972 | NaN |
50 rows × 53 columns
Osio 2: Datan valmistelu#
Nyt kun itse datasetit ovat valittuna, voidaan pyöräyttää muutama rivi koodia, jotta saadaan valmisteltua datat kuvaajien tekemistä varten.
### Tämän solun ajamisesta seuraa punainen virheilmoitus, mutta siitä ei tarvitse välittää. ###
# Koska fossiilisten polttoaineiden datasetti sisältää erikseen tiedot öljyn, kivihiilen ja maakaasun
# kulutuksesta, niin lasketaan ensin jokaiselle vuodelle erikseen näiden kaikkien kulutuksen summa
# ja lisätään ne tiedot uuteen sarakkeeseen alkuperäiseen taulukkoon. Uuden sarakkeen nimi on nyt "Yht".
yht = np.zeros(len(fossiiliset_polttoaineet_data))
fossiiliset_polttoaineet_data["Yht"] = yht
for i in range(len(fossiiliset_polttoaineet_data)):
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
+ fossiiliset_polttoaineet_data['Oil per capita (kWh)'][i]
+ fossiiliset_polttoaineet_data['Gas per capita (kWh)'][i])
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
/tmp/ipykernel_2219/3498235797.py:11: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
fossiiliset_polttoaineet_data["Yht"][i] = (fossiiliset_polttoaineet_data['Coal per capita (kWh)'][i]
### Koulutus-datasetin valmistelu. ###
koulutus_vuosi = list(np.int_(lasten_koulutus.columns.values[1:])) # x-akselin tiedon valmistelu
maan_valinta2 = np.int_(lasten_koulutus.index[lasten_koulutus['country'] == 'India']) ## valitaan haluttu maa
koulutus_maa = lasten_koulutus.loc[maan_valinta2[0]] # y-akselin tiedon valmistelu
koulutus_maa = list(np.float_(koulutus_maa[1:]))
### CO2-datasetin valmistelu. ###
co2_vuosi = list(np.int_(co2_kulutus.columns.values[1:])) # x-akselin tiedon valmistelu
maan_valinta1 = np.int_(co2_kulutus.index[co2_kulutus['country'] == 'India']) ## valitaan haluttu maa
co2_maa = co2_kulutus.loc[maan_valinta1[0]] # y-akselin tiedon valmistelu
co2_maa = list(np.float_(co2_maa[1:]))
### Fossiilisten polttoaineiden kulutukseen liittyvän datasetin valmistelu. ###
fossiiliset_polttoaineet = fossiiliset_polttoaineet_data[
(fossiiliset_polttoaineet_data['Entity']=='India')] ## Valitaan haluttu maa
fossiiliset_vuosi = fossiiliset_polttoaineet['Year'] # x-akselin tiedot
fossiiliset_maa = fossiiliset_polttoaineet['Yht'] # y-akselin tiedot
Osio 3: Kuvaajat#
Sitten päästäänkin tekemään kuvaajia. Tehdään kuvaaja nyt kaksiakselisena niin, että ensimmäisellä akselilla on lasten koulutus, ja toisella akselilla joko fossiilisten polttoaineiden kulutus tai niihin liittyvät hiilipäästöt. Kommentoimalla voit vaikuttaa siihen, kumpi ax2.plot()-riveistä piirretään kuvaajaan.
fig, ax1 = plt.subplots(figsize = (20,10))
#########
# Valmistellaan kuvaaja
ax1.set_xlabel('Vuosi', color = 'black', fontsize = 15)
ax1.set_ylabel('Koulutus (tytöt / pojat)', color = 'black', fontsize = 15)
ax1.tick_params(axis ='y', labelcolor = 'black')
ax2 = ax1.twinx()
ax2.set_ylabel('Fossiilisten polttoaineiden kulutus, joko kWh tai CO2 tonnia/asukas.', color = 'blue', fontsize = 15)
ax2.tick_params(axis ='y', labelcolor = 'blue')
#########
# Kuvaajat
ax1.plot(koulutus_vuosi, koulutus_maa, label = 'koulutus', color = 'red')
#ax2.plot(co2_vuosi, co2_maa, label = 'co2', color = 'blue')
ax2.plot(fossiiliset_vuosi, fossiiliset_maa, label = 'fossiiliset', color = 'blue')
#########
# Asetukset, kuten x-akselin skaalaus ja otsikointi.
plt.title('Otsikko', fontsize = 20)
plt.figlegend(loc = "upper right", fontsize = 15)
plt.show()
Osio 4: Pohdinta#
Mitkä asiat voivat vaikuttaa siihen, ettei tasa-arvoinen koulutus toteudu?
Valitse muutama maa eri puolilta maapalloa. Miten tasa-arvoisen koulutuksen kehitys on poikennut toisistaan näissä maissa? Esimerkkimaita voivat olla esimerkiksi Kiina, Intia, Espanja, Burkina Faso ja Kolumbia.
Voiko fossiilisten polttoaineiden käytöllä olla yhteyttä tasa-arvoisen koulutuksen kanssa? Jos yhteys on, mistä se voisi johtua? Jos ei, miksi?
Lähteet#
[1] Klasen, Stephan. “Low Schooling for Girls, Slower Growth for All? Cross-Country Evidence on the Effect of Gender Inequality in Education on Economic Development.” The World Bank Economic Review 16, no. 3 (2002): 345-373.
[2] King, Elizabeth M., and M. Anne Hill. Women’s education in developing countries barriers, benefits, and policies. Baltimore: Published for the World Bank by the Johns Hopkins University Press, 1998.
[3] Dollar, David, and Roberta Gatti. Gender Inequality, Income, and Growth: Are Good Times Good for Women?. Washington D.C.: The World Bank, 1999.
[4] https://www.unesco.org/en/gender-equality/education/her-education-our-future