- Organizers: Cable Knights cableknights.com
- Place: ???
- Date: 2018 September 7-9
- Ticket: 20-25 €
- Planned attendence: 60-120 per day
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from google_auth_oauthlib.flow import InstalledAppFlow | |
import socket | |
import re | |
from urllib.parse import unquote | |
CLIENT_SECRET_JSON_PATH = "./client_secret.json" | |
SERVER, PORT = "127.0.0.1", 8080 | |
flow = InstalledAppFlow.from_client_secrets_file( | |
CLIENT_SECRET_JSON_PATH, |
- Web development
- Studijų/mokslo sritis
- Python kitų programavimo kalbų naudotojams
- Duomenų Python. Šiai temai skirtas atskiras meetup PyData-Kaunas
Galime skirstyti pagal sritis arba pagal studijų programas/mokslo kryptis.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.idea | |
Cakefile.js | |
tmp/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import pandas as pd | |
def eliminate_nuokrypiai(group, stds, zymejimas): | |
group[np.abs(group - group.mean()) > stds * group.std()] = zymejimas | |
return group | |
def palikti_nuokrypius(group, stds, zymejimas): | |
group[np.abs(group - group.mean()) <= stds * group.std()] = zymejimas | |
return group |