Posts by Jorge Dorio • 9 points
2 posts
-
0
votes1
answer1460
viewsQ: Import txt files with pandas
I’m starting in the area of machine Learning, following a website that suggested the following initial model: import pandas as pd from sklearn import linear_model import matplotlib.pyplot as plt…
-
-1
votes1
answer72
viewsQ: edit local variable out of function
Hello! How do I change a local variable from a function by external commands to the function? Example: Create the function def totalValue(type): try: valor = float(texto[0]) except: valor = 0 total…