Created
December 3, 2019 13:53
-
-
Save caiobvilar/4676256bc1b14a7febc6e713809eaa8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from worldtradingdata import WorldTradingData | |
import pandas as pd | |
import io | |
from sklearn.model_selection import train_test_split | |
from sklearn.metrics import mean_squared_error | |
import xgboost as xgb | |
import matplotlib.pyplot as plt | |
from sklearn.preprocessing import StandardScaler | |
from sklearn.pipeline import Pipeline | |
from sklearn.model_selection import cross_val_score,RandomizedSearchCV | |
token = '6ObFwPQc1KdMsO4AcGgV0m15QV4HB9iA8Wb6M3FlesaNtL1sNxmgbSBTN4BN' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment