import warnings
warnings.filterwarnings('ignore')
import pandas as pd
from matplotlib import pyplot as plt
from math import ceil
VNR = 892
def roundup(x):
# round up ticks to next hundred
return int(ceil(x / 100.0)) * 100
# inject input data as pd dataframes
df = pd.read_csv(f"{VNR}_tsd_parameters.csv …- read more
Git
Intro
To begin with you'll need to have a computer to store a folder with content (local repo). After you are happy with you content you can 'send' it to remote repo. Sometimes it is vice versa from remote you get some code into your computer. Anyway computer and github …
read moreFME & PythonCaller combo
FME & PythonCaller combo.
The main goal with that article is to understand my use of FME and how Python can manipulate fmeobjects.
Shortly about FME (Feature Manipulation Engine)
The main desktop application of Safe Software is FME Workbench. The inteface consist of, among other, canvas. Here user graphically define a …
read moreHello World
This is the trial post written for my Pelican blog.
read moreHow-to 1: Blogging using Pelican.
Create a blog on GitHub Pages with Pelican
Steps to follow in order to publish the first page on my blog using static site generator - Pelican. This very first page took me many attempts and hours before I got this to work. The post you read is actually my second …
read more"Styling" My Pelican Blog
My Pelican Blog Redesign
Favicon Code
%> mv favicon.png favicon.icoNotes to me
- change "structure" of your blog https://stackoverflow.com/questions/23709113/in-pelican-how-to-create-a-page-dedicated-to-hosting-all-the-blog-articles
Test.
Topic¶
Here is an example of how you can write Pelican blog using Jupyter Notebooks.
Well you use markdown (.md), everything you need for writing in md is documented here github.
maths¶
In a Jupyter notebook, you can directly use LaTeX within Markdown cells. Here's version for Jupyter (psst no need for backslashes): $$ P(A|B) = \frac{P(B|A) \, P(A)}{P(B)} $$
read morelinks