Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python xgboost

#pip install xgboost
from xgboost import XGBClassifier,XGBRegressor
#Use classifier or regressor according to your problem
model = XGBClassifier()
model.fit(X_train, y_train)
Comment

xgboost algorithm in python

xg_reg = xgb.XGBRegressor(objective ='reg:linear', colsample_bytree = 0.3, learning_rate = 0.1,
                max_depth = 5, alpha = 10, n_estimators = 10)
Comment

xgboost algorithm in python

params = {"objective":"reg:linear",'colsample_bytree': 0.3,'learning_rate': 0.1,
                'max_depth': 5, 'alpha': 10}

cv_results = xgb.cv(dtrain=data_dmatrix, params=params, nfold=3,
                    num_boost_round=50,early_stopping_rounds=10,metrics="rmse", as_pandas=True, seed=123)
Comment

python XGBoost

# Create a placeholder to store the stock data
stock_data_dictionary = {}
for stock_name in stock_list:
# Get the data
df = data.get_data_yahoo(stock_name, start_date, end_date)
# Calculate the daily percent change
df['daily_pct_change'] = df['Adj Close'].pct_change()
# create the predictors
predictor_list = []
for r in range(10, 60, 5):
df['pct_change_'+str(r)] = df.daily_pct_change.rolling(r).sum()
df['std_'+str(r)] = df.daily_pct_change.rolling(r).std()
predictor_list.append('pct_change_'+str(r))
predictor_list.append('std_'+str(r))
# Target Variable
df['return_next_day'] = df.daily_pct_change.shift(-1)
df['actual_signal'] = np.where(df.return_next_day > 0, 1, -1)
df = df.dropna()
# Add the data to dictionary
stock_data_dictionary.update({stock_name: df})
Comment

PREVIOUS NEXT
Code Example
Python :: how to print a string in python 
Python :: How to Crack PDF Files in Python - Python Cod 
Python :: read .mat file in python 
Python :: numpy merge 
Python :: how to use pip commands in pycharm 
Python :: use of kwargs and args in python classes 
Python :: pandas df sample 
Python :: django pass parameters in url 
Python :: fill missing values with 0 
Python :: dfs in python 
Python :: numpy mean 
Python :: how to take space separated input in python 
Python :: any in python 
Python :: looping on string with python 
Python :: capture image raspberry pi usb camera 
Python :: python async await run thread 
Python :: max int python 
Python :: install django in windows 
Python :: how to get a random number in python 
Python :: how recursion works in python 
Python :: rstrip in python 
Python :: remove character from string pandas 
Python :: read excel date in python 
Python :: to string python 
Python :: python string cut right 
Python :: convert generator to list python 
Python :: glob python 
Python :: get a column of a csv python 
Python :: inherit init method 
Python :: Bar Charts bokeh 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =