Inspired by this article
In this tutorial, my IP machine is 192.168.1.65 ; please replace it by your own IP machine.
sudo -s
apt-get install git
apt-get install mongodb-server
nano /etc/mongodb.conf # replace 127.0.0.1 by the machine IP
| import requests, re | |
| import numpy as np | |
| import pandas as pd | |
| out = pd.Series([]) | |
| for i in range(10): | |
| r = requests.get('https://repo.continuum.io/pkgs/free/linux-64/') | |
| assert r.ok | |
| libs = re.findall('<tr>\s*<td>.*?>(.*?)</a></td>', r.text, re.DOTALL) | |
| assert len(libs) == len(re.findall('<tr>\s*<td>(.*?)</td>', r.text, re.DOTALL)) |
Inspired by this article
In this tutorial, my IP machine is 192.168.1.65 ; please replace it by your own IP machine.
sudo -s
apt-get install git
apt-get install mongodb-server
nano /etc/mongodb.conf # replace 127.0.0.1 by the machine IP
| np.interp( | |
| target.index.values.astype(int), | |
| source.index.values.astype(int), | |
| source.values, | |
| ) |
| git config --global alias.lola "log --graph --decorate --pretty=oneline --abbrev-commit --all" |
| ```python | |
| import numpy as np | |
| import scipy.stats as st | |
| import matplotlib.pyplot as plt | |
| import openturns as ot | |
| import pandas as pd | |
| sequence = ot.LowDiscrepancySequence(ot.HaltonSequence(1000)) |