Skip to content
View kix2mix2's full-sized avatar
🏠
Working from home
🏠
Working from home
  • London/Stuttgart

Highlights

  • Pro
Block or Report

Block or report kix2mix2

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

Pinned

  1. Dash / Plotly Subplots with Confiden... Dash / Plotly Subplots with Confidence Intervals
    1
    def stacked_plots(traces, name):
    2
    	fig = tools.make_subplots(rows = len(traces), cols =1)
    3
    	for i, trace in enumerate(traces):
    4
    		j = i + 1
    5
    		if j%2==0:
  2. SepMe SepMe Public

    An implementation of the ML based framework used in the SepMe/RegressMe projects. The idea behind this approach is to gather human judgements of visual patterns across a large collection of dataset…

    Jupyter Notebook 1

  3. γ -Observable Neighbor Graph (GONG) ... γ -Observable Neighbor Graph (GONG) from Pandas dataframe
    1
    import networkx as nx 
    2
    from scipy.spatial.distance import euclidean, pdist, squareform
    3
    import pandas as pd
    4
    import numpy as np
    5
    
                  
  4. K-Nearest Center of Gravity Graph (K... K-Nearest Center of Gravity Graph (KNCG)
    1
    
                  
    2
    
                  
    3
    def get_kncg(df, K=4):
    4
      # df is a pandas dataframe with mandatory columns ['x','y']
    5
        graph = get_knntree(df, 1)
  5. DRflow DRflow Public

    A Dimensionality Reduction pipeline for image data and more

    Jupyter Notebook 1