@@ -55,7 +55,7 @@ First, clone the Pysus repository:
5555
5656``` bash
5757git clone https://github.com/fccoelho/PySUS.git
58- ```
58+ ```
5959then from within the PySUS directory build the container
6060
6161``` bash
@@ -72,7 +72,7 @@ Point your browser to [http://127.0.0.1:8888](http://127.0.0.1:8888) and have fu
7272Once you are done, you can stop the container with a simple ` ctrl-c ` from the terminal you started it or use the following command:
7373``` bash
7474# to find the container ID
75- docker ps
75+ docker ps
7676docker stop < CONTAINER ID>
7777```
7878### Mounting your working directory in the container
@@ -105,7 +105,7 @@ setx PYSUS_CACHEPATH "C:\Users\Me\desired\path\.pysus"
105105In Docker, just add an extra parameter ` -e PYSUS_CACHEPATH="/home/me/desired/path/.pysus" ` when starting the container:
106106
107107``` bash
108- docker run -p 8888:8888 -e PYSUS_CACHEPATH=" /home/me/desired/path/.pysus" pysus:latest
108+ docker run -p 8888:8888 -e PYSUS_CACHEPATH=" /home/me/desired/path/.pysus" pysus:latest
109109```
110110
111111## Examples
@@ -164,7 +164,7 @@ Downloading and reading SINASC data:
164164In[1 ]: from pysus.online_data.sinasc import download
165165In[2 ]: df = download(' SE' , 2015 )
166166In[3 ]: df.head()
167- Out[3 ]:
167+ Out[3 ]:
168168 NUMERODN CODINST ORIGEM ... TPROBSON PARIDADE KOTELCHUCK
1691690 19533794 MSE2805100001 1 ... 11 1 9
1701701 52927108 MSE2802700001 1 ... 11 1 9
@@ -180,7 +180,7 @@ Dowloading and reading SIM data:
180180In[1 ]: from pysus.online_data.SIM import download
181181In[2 ]: df = download(' ba' , 2007 )
182182In[3 ]: df.head()
183- Out[3 ]:
183+ Out[3 ]:
184184 NUMERODO TIPOBITO DTOBITO ... UFINFORM CODINST CB_PRE
1851850 01499664 2 30072007 ... 29 RBA2914800001 C229
1861861 09798190 2 04072007 ... 29 RBA2914800001 R98
@@ -196,7 +196,7 @@ Dowloading and reading CIHA data:
196196In[1 ]: from pysus.online_data.CIHA import download
197197In[2 ]: df = download(' mg' , 2009 , 7 )
198198In[3 ]: df.head()
199- Out[3 ]:
199+ Out[3 ]:
200200 ANO_CMPT MES_CMPT ESPEC CGC_HOSP ... CAR_INT HOMONIMO CNES FONTE
2012010 2009 07 16505851000126 ... 2126796 1
2022021 2009 07 16505851000126 ... 2126796 2
@@ -212,7 +212,7 @@ Dowloading and reading SIA data:
212212In[1 ]: from pysus.online_data.SIA import download
213213In[2 ]: bi, ps = download(' AC' , 2020 , 3 , group = [" BI" , " PS" ])
214214In[3 ]: bi.head()
215- Out[3 ]:
215+ Out[3 ]:
216216 CODUNI GESTAO CONDIC UFMUN TPUPS ... VL_APROV UFDIF MNDIF ETNIA NAT_JUR
2172170 2000733 120000 EP 120040 07 ... 24.2 0 0 1023
2182181 2001063 120000 EP 120040 36 ... 7.3 0 0 1023
0 commit comments