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
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" page-range-format="expanded"> | |
<info> | |
<title>American Psychological Association 7th edition (con "y")</title> | |
<title-short>APA</title-short> | |
<id>http://www.zotero.org/styles/apa</id> | |
<link href="http://www.zotero.org/styles/apa" rel="self"/> | |
<link href="http://www.zotero.org/styles/apa-6th-edition" rel="template"/> | |
<link href="https://apastyle.apa.org/style-grammar-guidelines/references/examples" rel="documentation"/> | |
<author> |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Thu Dec 10 16:49:05 2020 | |
@author: rreal | |
""" | |
import matplotlib as mpl | |
import numpy as np | |
import pandas as pd | |
BDCN_TS = "C://..." # Full path of observed data CSV input files. |
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
# -*- coding: utf-8 -*- | |
""" | |
GENERAR FIGURAS DE LA EVOLUCIÓN DE CASOS DE COVID-19 EN MÉXICO. | |
Created on Fri May 22 10:53:26 2020 | |
@author: [email protected] | |
""" | |
from pathlib import Path | |
import datetime as dt | |
import numpy as np |
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
# -*- coding: utf-8 -*- | |
""" | |
GENERAR FIGURAS DE LA EVOLUCIÓN DE CASOS DE COVID-19 EN MÉXICO. | |
Created on Fri May 22 10:53:26 2020 | |
@author: [email protected] | |
""" | |
from pathlib import Path | |
import datetime | |
import pandas as pd |
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
# -*- coding: utf-8 -*- | |
""" | |
GENERAR FIGURAS DE LA EVOLUCIÓN DE DEFUNCIONES POR COVID-19 EN MÉXICO | |
Con cambios menores, este código puede ser usado para cualquier otro | |
municipio o estado de interés. | |
Created on Fri May 22 10:53:26 2020 | |
@author: [email protected] | |
""" |
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
# -*- coding: utf-8 -*- | |
""" | |
GENERAR FIGURAS DE CASOS DIARIOS DE COVID-19 EN MEXICALI, B. C. | |
POR FECHA DE INGRESO A LA UNIDAD DE ATENCIÓN | |
Con cambios menores, este código puede ser usado para cualquier otro | |
municipio o estado de interés. | |
Created on Jun 05 00:54 2020 | |
@author: [email protected] |
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
# -*- coding: utf-8 -*- | |
""" | |
GENERAR FIGURAS DE LA EVOLUCIÓN DE CASOS DE COVID-19 EN MÉXICO. | |
Created on Fri May 22 10:53:26 2020 | |
@author: [email protected] | |
""" | |
from datetime import datetime as dt | |
from pathlib import Path | |
import datetime |