This file contains hidden or 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
{ | |
"Ansi 5 Color" : { | |
"Red Component" : 0.87335008382797241, | |
"Color Space" : "sRGB", | |
"Blue Component" : 1, | |
"Alpha Component" : 1, | |
"Green Component" : 0.58545517921447754 | |
}, | |
"Tags" : [ |
This file contains hidden or 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
{ | |
"workbench.colorTheme": "SynthWave '84", | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"workbench.startupEditor": "none", | |
"window.zoomLevel": 2, | |
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace", | |
"editor.rulers": [ | |
80 |
This file contains hidden or 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
# %% primera celda para instalar `feedparser` en caso de no estar instalado | |
if 'feedparser==5.2.1' not in sys.modules: | |
!pip install 'feedparser==5.2.1' | |
# %% segunda celda import + feed | |
import feedparser | |
feeds = ['https://www.lavoz.com.ar/rss/tecnologia.xml'] | |
# %% Tercera parsear con feedparser + juntar los titulos en un array |
This file contains hidden or 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
# %% | |
""" | |
3. Distribuciones | |
----------------- | |
Realizar una prueba de Kolmogorov-Smirnof para comprobar analíticamente | |
si estas variables responden la distribución propuesta en el ejercicio | |
anterior. Hint: podés usar | |
https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.stats.kstest.html | |
pero hay que tener en cuenta que si la distribución es "norm", | |
entonces va a comparar los datos con una distribución normal con media |
This file contains hidden or 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
/* | |
Credits to u/phyrne | |
Code Source: https://github.com/cmacrae/config/blob/b33ccb041861b56c97e1744b0fd8c606e343164c/conf.d/userChrome.css | |
Reddit Source: https://www.reddit.com/r/FirefoxCSS/comments/gh5a10/a_minimal_set_of_customisations_inspired_by/ | |
*/ | |
/* | |
* Hide window controls | |
*/ |
This file contains hidden or 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
# %% | |
# Defino un a funcion para solo tener que pasar el dataset de la region | |
def plt_mean(dt, region): | |
pf_identity_graph = seaborn.lineplot( | |
y='pf_identity', x='year', | |
data=dt, | |
estimator=numpy.median, | |
label='pf_identity' | |
) | |
hf_score_graph = seaborn.lineplot( |
This file contains hidden or 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
# Settings | |
DJOSER = { | |
'SEND_ACTIVATION_EMAIL': True, | |
'SEND_CONFIRMATION_EMAIL': True, | |
'SERIALIZERS': { | |
'user_create': 'APP_NAME.serializers.CustomUserCreateSerializer', | |
'activation': 'APP_NAME.serializers.CustomActivationSerializer', | |
}, |