Skip to content
View iagogv3's full-sized avatar

Block or report iagogv3

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
iagogv3/README.md
  • My name is Iago. I am a PhD. in Mathematics.
  • 🔭 I’m currently working as Data Analyst with Health/epidemiological data.
  • 💾 Tools: R, RMarkdown, Python, C, ViM, Sublime Text, Emacs, RStudio, Visual Studio Code, GNU/Linux, Windows 10
  • 🌱 I’m currently learning Rust programming language and Docker.
  • Authored two R packages on CRAN:
  • Maintenance of three R packages on CRAN:
  • Contributions to some other R packages. Listed in the DESCRIPTION file of:
  • Contributions to some other R packages. Non listed in the DESCRIPTION file of:

ORCiD

Research gate

Stack Overflow

Zotero

Docker Hub

GitLab

Mastodon

Update

You see below my activity on Github has declined last months. This is due to that currently I am working mainly with GitLab (see my account in link above), where I placed my main projects.

My github stats

Pinned Loading

  1. athlosproject/athlos-project.github.io athlosproject/athlos-project.github.io Public

    HTML 9 3

  2. R-in-LaTeX R-in-LaTeX Public

    Template for printing R code in LaTeX

    TeX

  3. Curso-R Curso-R Public

    HTML

  4. Dockerfile builds image from tensorf... Dockerfile builds image from tensorflow official image to use with Jupyter notebook, adding packages to use in #MIT6.S191 and in #AI4EM_MOOC
    1
    FROM tensorflow/tensorflow:latest-jupyter
    2
    RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
    3
    RUN apt-get -y update
    4
    RUN apt-get install dialog apt-utils -y && apt-get install libgl1-mesa-glx -y && apt-get install libproj-dev -y && apt-get install libgdal-dev -y && apt-get install abcmidi timidity -y && apt-get install graphviz -y && apt-get install python3-gdal -y
    5
    RUN useradd -m -u 1000 diago
  5. Shell script to install LaTeX sty fi... Shell script to install LaTeX sty files from LaTeX packages on CTAN to Debian/Ubuntu
    1
    #!/bin/bash
    2
    
                  
    3
    # Process https://tex.stackexchange.com/a/1138
    4
    
                  
    5
    # set -x
  6. netCDF test with R for a job intervi... netCDF test with R for a job interview (1st part)
    1
    library(curl)
    2
    url = "ftp://.../tas_201711.nc"
    3
    curl_download(url = url, destfile = "/tmp/tas_201711.nc")
    4
    
                  
    5