My GitHub Pages Site

Hello everybody!

Welcome to my GitHub Page, here you can see the recent posts!

Recent Posts

Combinatorial analysys

30 minute read

Combinatorial analysis Probability Theory: An Introduction “What are the chances…” is an expression you probably use very often. Determining the chances of...

PCR & PLS

7 minute read

Regression, Data Science, Python

Tes

1 minute read

test for jupyter def trapezoidal(f, a, b, n): h = float(b - a) / n s = 0.0 s += f(a)/2.0 for i in range(1, n): s += f(a + i*h) s...