Skip to content

Instantly share code, notes, and snippets.

View UmbreLu's full-sized avatar

Lucas UmbreLu

View GitHub Profile
@UmbreLu
UmbreLu / 4myportfolio_adforcescrap.ipynb
Created August 30, 2023 18:18
4myportfolio_adforcescrap.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UmbreLu
UmbreLu / 4myportfolio_cldfreportbuilder.ipynb
Last active August 30, 2023 14:54
4myportfolio_cldfreportbuilder.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UmbreLu
UmbreLu / tesla_stock_exploratory_analysis.ipynb
Created September 22, 2022 14:12
Short exploratory analysis on Tesla stock price dataset on Kaggle
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UmbreLu
UmbreLu / ML0101EN-Proj-Loan-py-v1.ipynb
Created September 5, 2022 17:17
Best Classifier IBM Machine Learning Capstone Project
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UmbreLu
UmbreLu / Jupyter_Notebook_peer_graded_test_Lucas_Pinto.ipynb
Created July 12, 2022 14:27
Coursera Tools for Data Science Week 4 peer-graded assignment by Lucas
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@UmbreLu
UmbreLu / Answers_in_Python.py
Last active April 25, 2020 20:18
My answers in Python 3.8 for oskarkv/exercises.org on functional programing (https://gist.github.com/oskarkv/3168ea3f8d7530ccd94c97c19aafe266).
from functools import reduce
import operator
# The proposed exercises are expected to be solven with a
# pure functional aproach. This means using recursion, map,
# reduce, filter, clist and other functions.
# As my focus is learning the "Python Way", I'll also
# write some functions the most pythonic fashion I can.
# In currect state python, the proper pythonistic way
# would be to use recursion, generators, generator expressions