私はPythonにはかなり新しいです。私はx_train変数とy_trainを作成していると私はロジスティック回帰を取得しようとしていますR.のように私は、ロジスティック回帰の概要を取得したいと思いPythonでの回帰の概要
import numpy as np
import matplotlib.pyplot as plt
from sklearn import linear_model
clf = linear_model.LogisticRegression(C=1e5)
clf.fit(x_train, y_train)
私は何を得る:
LogisticRegression(C=100000.0, class_weight=None, dual=False,
fit_intercept=True, intercept_scaling=1, max_iter=100,
multi_class='ovr', n_jobs=1, penalty='l2', random_state=None,
solver='liblinear', tol=0.0001, verbose=0, warm_start=False)
私は重要なレベルの要約、R2 eccを持っていたいと思います。