Skip to content
View IlievskiV's full-sized avatar
🐻‍❄️
🐻‍❄️
Block or Report

Block or report IlievskiV

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
IlievskiV/README.md

$whoami

Hi! My name is Vladimir, or Vlad in short. I am working as a Data Scientist mainly in NLP. I am the author of iSquared where I am bringing the science closer to the readers.

iSquared banner

Pinned

  1. Amusive-Blogging-N-Coding Amusive-Blogging-N-Coding Public

    Open source code from the blog posts at

    Jupyter Notebook 83 50

  2. geometric_brownian_motion.py geometric_brownian_motion.py
    1
    def geometric_brownian_motion(G0, mu, sigma, N, T):
    2
        """Simulates a Geometric Brownian Motion.
    3
        
    4
        :param float G0: initial value
    5
        :param float mu: drift coefficient
  3. animate_julia_set.py animate_julia_set.py
    1
    import numpy as np
    2
    import matplotlib.pyplot as plt
    3
    import matplotlib.animation as animation
    4
    
                  
    5
    x_start, y_start = -2, -2  # an interesting region starts here
  4. Implementation of the Riemann-Stielt... Implementation of the Riemann-Stieltjes Integration in Python
    1
    
                  
    2
    def derivative(f, a, h=0.01):
    3
        '''Approximates the derivative of the function f in a
    4
        
    5
        :param function f: function to differentiate
  5. Approximating Pi using Monte Carlo M... Approximating Pi using Monte Carlo Method
    1
    {
    2
     "cells": [
    3
      {
    4
       "cell_type": "markdown",
    5
       "metadata": {},