Niin hyvää puuta#

Tämä on uloin pala vanhaa runkoa.

Yllä näkyy pala mäntyä, joka kaatui syysmyrskyssä 2020 Helsingin Pukkisaaressa. Puu on ollut paikalla vähintään 1700-luvulta asti ja kokenut monenlaista kasvunsa aikana. Kuten ikijäästäkin saatavista näytteistä, voidaan puidenkin kasvusta nähdä merkkejä historiallisista olosuhteista. Tässä harjoitteessa tarkastellaan miten puuvanhus vertautuu historiallisiin säätietoihin.

Vuosilustot - mistä on kyse?#

Puut elävät helposti satoja vuosia, jotkin tuhansia. Ne kasvavat hiljaksiin monivaiheisen prosessin myötä, josta jää runkoon havainnoitavia jälkiä. Tarkastelemalla suurta joukkoa puita ja metsiä voidaan muun muassa tällä tavoin selvittää pitkiäkin pätkiä olosuhteiden historiasta tietyillä alueilla, kuten Lapin lustokalenteriprojektissa on tehty viimeisen 7600 vuoden ajalta. Vanhimpia puita on mm. kalastettu järvien pohjasta, missä ne ovat säilyneet vuosituhansien ajan. Tällaisiin dendrokronologisiin aineistoihin tallentuu merkkejä esimerkiksi suurista tulivuorenpurkauksista tai vastaavista anomalioista ja ne tarjoavat erinomaisen katsauksen pitkälle menneisyyteen samaan tapaan kuin napa-alueiden jääkairaukset tai valtamerten hidaskasvuiset korallitkin. Ajoitusmenetelmästä voi lukea lisää täältä.

Alimmat, vanhimmat osat kasvista sisältävät enemmän tietoja kuin myöhemmin muodostuneet ylemmät tai ulommat osat: yllä olevan kuvan leikkaus esimerkiksi on otettu noin neljän metrin korkeudelta katkeamakohdasta, jolloin siitä ei voi sanoa paljoakaan kyseisen puun ensimmäisistä vuosikymmenistä.

Männyn kohdalla runko paksuuntuu pituuskasvun kanssa samoihin aikoihin, kiivaimmin heinä-elokuussa. Ensin ulkoreunaan syntyy vaaleaa kevätpuuta, jota seuraa tiheämpi tumma raita, kesäpuu. Kesäpuun kohdalla kasvu on hitaampaa ja raita täten ohuempi, mikä helpottaa vuosirenkaiden laskemista silmämääräisesti. Hyvinä vuosina puu voi kasvaa paksuutta useita millimetrejä, siinä missä vaikeina aikoina kasvua ei välttämättä tule juuri ollenkaan.

Mitkä tekijät säätelevät puun kasvua? Millaiset olosuhteet ovat suotuisia kasvin kannalta? Miten tässä tapauksessa tilanteeseen vaikuttaa, että puu on kasvanut kallioisella saarella meren rannalla?

Säähavainnot - Kaisaniemen asema#

AJA TÄMÄ SOLU ENSIMMÄISENÄ!

# Tuodaan importilla tarvittavat kirjastot käyttöön.

import pandas as pd
import matplotlib.pyplot as plt
import numpy as np

1. Tiedot#

Käytettävät tiedot ovat saatavilla Ilmatieteen laitoksen avoimen datan sivuilta, joskin vanhempien mittausten kohdalla kerätty samasta lähteestä Kilotavu-sivun käyttöliittymän kautta.

Kaisaniemen asema on Suomen vanhimpia säähavainnointipisteitä ja riittävän lähellä kyseisen mäntyvanhuksen kasvupaikkaa, jotta mahdolliset korrelaatiot havainnoissa ovat vähemmän satunnaisia. Ensimmäiset havainnot ovat kesältä 1844, mutta käytetyn laskentatavan vuoksi tässä yhteydessä lasketaan lähinnä täysiä vuosia, jolloin ensimmäiset kuvaajissa näkyvät pisteet ovat vuodelta 1845. Jos olet hurjempi ohjelmoija, muokkaa toki koodia niin että nekin tiedot tulevat mukaan pienellä lisävaivalla.

# Ladataan käytettävät tiedot muuttujiin. 

KLam = pd.read_csv("https://raw.githubusercontent.com/opendata-education/Biologia/main/materiaali/data/KeskLam.txt", sep = "\t")
KSade = pd.read_csv("https://raw.githubusercontent.com/opendata-education/Biologia/main/materiaali/data/Sadesumma.txt", sep = "\t")
# Tarkastetaan, miltä data näyttää lämpötilan suhteen (celsius-asteina).

KLam.head(10)
Vuosi Tammi Helmi Maalis Huhti Touko Kesä Heinä Elo Syys Loka Marras Joulu
0 1844 NaN NaN NaN NaN NaN NaN 14.3 16.0 11.6 5.9 -2.1 -7.3
1 1845 -1.4 -12.2 -8.9 -0.3 5.8 12.8 16.5 16.2 11.0 3.9 2.6 -2.7
2 1846 -8.1 -11.4 -0.2 2.1 6.5 13.1 17.2 20.6 11.2 8.4 1.6 -6.5
3 1847 -4.4 -11.1 -5.4 -2.4 6.6 14.6 15.5 18.0 13.0 5.0 4.1 -0.5
4 1848 -10.8 -3.6 -1.0 3.9 8.4 13.2 14.5 14.3 10.7 5.8 0.7 -2.9
5 1849 -10.1 -5.3 -4.6 -0.1 8.4 11.0 14.6 15.6 10.4 4.6 0.9 -5.6
6 1850 -14.4 -6.0 -6.8 1.2 9.0 13.2 16.9 16.9 10.3 5.3 -1.5 -0.7
7 1851 -5.4 -7.5 -6.6 2.9 6.5 13.4 16.0 14.1 11.3 7.2 3.0 -0.9
8 1852 -5.2 -9.0 -2.9 -2.4 7.6 15.4 16.5 16.2 11.4 1.4 -4.4 -3.0
9 1853 -3.1 -7.6 -8.2 -1.2 8.2 15.4 17.2 14.2 11.0 6.4 2.7 -2.7
# Entä sademäärän (millimetreinä)?

KSade.head(10)
Vuosi Tammi Helmi Maalis Huhti Touko Kesä Heinä Elo Syys Loka Marras Joulu
0 1844 NaN NaN NaN NaN NaN NaN 51.0 31.0 56.0 87.0 31.0 12.0
1 1845 10.0 31.0 15.0 25.0 9.0 33.0 30.0 61.0 82.0 98.0 43.0 64.0
2 1846 46.0 26.0 55.0 73.0 19.0 9.0 27.0 50.0 37.0 38.0 28.0 43.0
3 1847 15.0 28.0 21.0 20.0 25.0 48.0 30.0 17.0 69.0 34.0 47.0 63.0
4 1848 19.0 42.0 14.0 85.0 42.0 20.0 39.0 72.0 64.0 111.0 151.0 36.0
5 1849 57.0 24.0 22.0 38.0 7.0 73.0 81.0 90.0 42.0 94.0 49.0 25.0
6 1850 17.0 46.0 29.0 6.0 87.0 78.0 25.0 80.0 18.0 100.0 84.0 21.0
7 1851 34.0 24.0 10.0 34.0 37.0 51.0 45.0 71.0 21.0 74.0 89.0 43.0
8 1852 72.0 41.0 24.0 21.0 20.0 44.0 6.0 50.0 89.0 89.0 80.0 68.0
9 1853 40.0 30.0 22.0 45.0 34.0 4.0 16.0 79.0 76.0 63.0 25.0 11.0

2. Analyysi#

# Lähdetään hyvin karkeasti liikkeelle: erottuuko vuoden keskiarvoista jotain?
# Älä huoli, jos tämä solu heittää varoitusviestiä (tämän voisi tehdä paljon nätimminkin).

# Tässä tehdään äskeisiin taulukoihin uusi sarake, nimeltään KA.

sa = np.zeros(len(KSade))
KSade["KA"] = sa

la = np.zeros(len(KLam))
KLam["KA"] = la

# Tässä käydään tiedot rivi kerrallaan läpi, asettaen äskeiseen uuteen sarakkeeseen arvo. Mikä arvo?
# Miten siihen vaikuttaa, mikäli tietoaineistossa on puuttuvia kohtia (NaN, not a number)?

for i in range(len(KSade)):
    KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
    +KSade["Kesä"][i]+KSade["Heinä"][i]+KSade["Elo"][i]+KSade["Syys"][i]+KSade["Loka"][i]
    +KSade["Marras"][i]+KSade["Joulu"][i])/12
    
for i in range(len(KLam)):
    KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
    +KLam["Kesä"][i]+KLam["Heinä"][i]+KLam["Elo"][i]+KLam["Syys"][i]+KLam["Loka"][i]
    +KLam["Marras"][i]+KLam["Joulu"][i])/12
    
# Ajettuasi tämän solun, miltä data nyt näyttää? 
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:16: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KA"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]+KSade["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
/tmp/ipykernel_2076/3399210796.py:21: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KA"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]+KLam["Touko"][i]
# Vilkaise tässä miltä data näyttää äskeisen ajon jäljiltä. Millaisen komennon tarvitset? Kirjoita ja aja!
# Visualisoidaan äskeisiä kuvaajiksi.

# Subplot-komennot mahdollistavat usean kuvaajan rinnakkaisen esittämisen.

plt.subplots(figsize = (20,10))

# Tässä piirretään selvyyden nimissä sekä viivakuvaaja (plot) että pistekaavio (scatter), jotta
# yksittäisten vuosien tulokset on helppoa erottaa.

plt.subplot(211)
plt.plot(KSade["Vuosi"], KSade["KA"], alpha = 0.5, color = "orange", label = "_nolegend_")
plt.scatter(KSade["Vuosi"], KSade["KA"], label = "Sademäärä (mm)", color = "b")
plt.legend(loc = "upper left", fontsize = 16)

plt.title("Vuosittaiset keskiarvot Kaisaniemen sääasemalta mitattuna vuosina 1845-2020 \n", fontsize = 20)

plt.subplot(212)
plt.plot(KLam["Vuosi"], KLam["KA"], alpha = 0.5, color = "orange", label = "_nolegend_")
plt.scatter(KLam["Vuosi"], KLam["KA"], label = "Lämpötila (°C)", color = "r")
plt.legend(loc = "upper left", fontsize = 16)


plt.show()
/tmp/ipykernel_2076/1964338159.py:10: MatplotlibDeprecationWarning: Auto-removal of overlapping axes is deprecated since 3.6 and will be removed two minor releases later; explicitly call ax.remove() as needed.
  plt.subplot(211)
../_images/9340bf43cf8f2a0111f2098d3dca511dfc6f62666be6adc3296b31fec5cf4806.png

Yllä näkyvästä karvalakkimallista nähdään karkeasti yleistetyt vuosittaiset keskiarvot kuukautta kohden. Tämä malli ohittaa monta relevanttia yksityiskohtaa, mutta tarjoaa ensimmäisen silmäyksen siihen millaisista vuosista puhutaan. Jos katsotaan esimerkiksi 1930-40 -lukujen taitteen tienoille, huomataan aikaikkuna joka oli sekä verrattain kuiva että kylmä. Mikä tapahtuma osui samoihin aikoihin ja erotatko sitä vuosirenkaiden kuvasta katsomalla (laske taaksepäin kuoren vuodesta 2020)? Löydätkö muita erottuvia ajanjaksoja?

3. Syvempi sukellus aineistoon#

Tarkastellaan saatavilla olevia aineitoja hitusen yksityiskohtaisemmin. Puiden kasvuaika ei kata koko vuotta eikä vuosittainen keskiarvo kerro tarkkaan mitä ääriarvojen heittelyä vuoden mittaan on tapahtunut, joten rajataan hieman mitä aikoja vertaillaan. Aineiston rajaaminen on jokseenkin mielivaltainen päätöskysymys, mutta katsotaan nyt esimerkiksi talvi- ja kesäaikoja erikseen.

Voit vaihtaa valittavia alueita oman mielenkiintosi mukaan. Yksi kiintoisa jakoehto olisi termisen kasvukauden (keskilämpötila ylittää 5 °C) mukaan, mikä Helsingin suunnalla saattaisi nopealla vilkaisulla olla esimerkiksi toukokuusta lokakuuhun (kuvat väliltä 1981-2020, vanhemman aineiston vuosien ollessa keskimäärin viileämpiä kuten aiemmasta kuvaajasta nähtiin).

# Eritellään keskiarvot kunkin vuoden kasvukausille ja talville. Silmukointi voi viedä hetken aikaa, kun ajat solun.

saK = np.zeros(len(KSade))
KSade["KAK"] = saK

saT = np.zeros(len(KSade))
KSade["KAT"] = saT

laK = np.zeros(len(KLam))
KLam["KAK"] = laK

laT = np.zeros(len(KLam))
KLam["KAT"] = laT

# Iteroidaan kasvukausien tiedot. Jos haluat muuttaa otosta, senkus vaihdat tai lisäilet tarkasteltavia sarakkeita.
# Muista kuitenkin olla tarkkana indeksin i mukanapidosta, että ohjelma ymmärtää missä kohtaa on menossa.

for i in range(len(KSade)):
    KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
    +KSade["Elo"][i]+KSade["Syys"][i]+KSade["Loka"][i])/6
    
for i in range(len(KLam)):
    KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
    +KLam["Elo"][i]+KLam["Syys"][i]+KLam["Loka"][i])/6
    
# Iteroidaan talvitiedot.

for i in range(len(KSade)):
    KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
    +KSade["Marras"][i]+KSade["Joulu"][i])/6
    
for i in range(len(KLam)):
    KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
    +KLam["Marras"][i]+KLam["Joulu"][i])/6
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:19: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAK"][i] = (KSade["Touko"][i]+KSade["Kesä"][i]+KSade["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:23: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAK"][i] = (KLam["Touko"][i]+KLam["Kesä"][i]+KLam["Heinä"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:29: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KSade["KAT"][i] = (KSade["Tammi"][i]+KSade["Helmi"][i]+KSade["Maalis"][i]+KSade["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
/tmp/ipykernel_2076/3929337303.py:33: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  KLam["KAT"][i] = (KLam["Tammi"][i]+KLam["Helmi"][i]+KLam["Maalis"][i]+KLam["Huhti"][i]
# Tässä välissä kannattaa tarkastaa että uudet sarakkeet tosiaankin ovat ilmestyneet aineistoon.
# Kirjoita tähän sopiva komento ja tarkista asia!
# Tehdään taas kuvaajia, nyt eritellen kaudet omikseen.

plt.subplots(figsize = (20,20))

# Tässä piirretään selvyyden nimissä sekä viivakuvaaja (plot) että pistekaavio (scatter), jotta
# yksittäisten vuosien tulokset on helppoa erottaa.

# subplot(xyz) tuottaa tulokseksi x riviä ja y saraketta sisältävän muodon, jossa vasemmalta oikealle
# luettava juokseva indeksi z kertoo monesko kukin kuvaaja on. Vaihtelemalla numeroita voit vaihtaa kuvaajien paikkaa,
# kokeile vaikka järjestellä niitä 2x2 ruuduksi.

plt.subplot(411)
plt.plot(KSade["Vuosi"], KSade["KAK"], alpha = 0.5, color = "orange", label = "_nolegend_")
plt.scatter(KSade["Vuosi"], KSade["KAK"], label = "Sademäärä kesällä (mm)", color = "b")
plt.legend(loc = "upper left", fontsize = 16)

plt.title("Kausittaiset keskiarvot Kaisaniemen sääasemalta mitattuna vuosina 1845-2020 \n", fontsize = 20)

plt.subplot(412)
plt.plot(KSade["Vuosi"], KSade["KAT"], alpha = 0.5, color = "orange", label = "_nolegend_")
plt.scatter(KSade["Vuosi"], KSade["KAT"], label = "Sademäärä talvella (mm)", color = "b")
plt.legend(loc = "upper left", fontsize = 16)

plt.subplot(413)
plt.plot(KLam["Vuosi"], KLam["KAK"], alpha = 0.5, color = "orange", label = "_nolegend_")
plt.scatter(KLam["Vuosi"], KLam["KAK"], label = "Lämpötila kesällä (°C)", color = "r")
plt.legend(loc = "upper left", fontsize = 16)

plt.subplot(414)
plt.plot(KLam["Vuosi"], KLam["KAT"], alpha = 0.5, color = "orange", label = "_nolegend_")
plt.scatter(KLam["Vuosi"], KLam["KAT"], label = "Lämpötila talvella (°C)", color = "r")
plt.legend(loc = "upper left", fontsize = 16)


plt.show()
/tmp/ipykernel_2076/3728900651.py:12: MatplotlibDeprecationWarning: Auto-removal of overlapping axes is deprecated since 3.6 and will be removed two minor releases later; explicitly call ax.remove() as needed.
  plt.subplot(411)
../_images/2758d46aba4842c65771780ebd80dbd2114c2a1be690c5e7421378c22b690204.png

4. Ihan itse tehtynä#

Puristamalla vielä tiukemmaksi, voisi olla kiintoisaa tarkastella sydäntalvea (joulu-tammikuu) tai keskikesää (kesä-heinäkuu) erikseen. Koodaa alle moiset!

# Kirjoita tähän pätkä, joka luo uudet sarakkeet muuttujiin KSade ja KLam sekä laskee niihin halutut arvot.
# Kirjoita tähän pätkä, jolla saat visualisoitua tuloksesi.

Vertaa laskelmiasi männyssä näkyviin vuosirenkaisiin. Tutkimisen iloa!

5. Linkkejä#

https://www.luke.fi/tietoa-luonnonvaroista/metsa/metsat-ja-ilmastonmuutos/puiden-vuosilustot/

https://fi.wikipedia.org/wiki/Vuosirengasajoitus

https://www.ilmatieteenlaitos.fi/terminen-kasvukausi

https://www.ilmatieteenlaitos.fi/avoin-data

https://kilotavu.com/asema-taulukko.php?asema=100971