|
You are here |
epiverse-trace.github.io | ||
| | | | |
aosmith.rbind.io
|
|
| | | | | In this post I delve into the details of the R functions I've been using in my simulation examples, focusing on the replicate() function and the map family of functions from the purrr package. I spend a little time showing the parallels between the replicate() function and a for() loop. | |
| | | | |
zevross.com
|
|
| | | | | The purrr package is a functional programming superstar which provides useful tools for iterating through lists and vectors, generalizing code and removing programming redundancies. The purrr tools... | |
| | | | |
alistaire.rbind.io
|
|
| | | | | Use the LHS of a formula to specify variable names in purrr-style lambda functions | |
| | | | |
blog.chand1012.dev
|
|
| | | In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app. | ||