data-science-blog
data-science-blog copied to clipboard
Jupyter notebooks used for Medium.com articles
Results
2
data-science-blog issues
Sort by
recently updated
recently updated
newest added
https://github.com/e-alizadeh/medium/blob/b84a9d6caf3805a1b67ac41d4fbcca56af17731f/notebooks/intro_to_dtw.ipynb?short_path=9837e37#L151 Should be: ```python dist[i,j] = math.sqrt((x[j]-y[i])**2) ``` Or ```python dist[i,j] = math.abs(x[j]-y[i]) ``` If I'm not mistaken.
Thanks for the inspiring article in meduim , Can u please also share an example of use of relational data module ? I cover the documentation and couldnt find away...