OLS примерка - PullRequest
       88

OLS примерка

0 голосов
/ 13 апреля 2020

Я хочу получить сводку OLS для набора данных для удаления в обратном направлении, но я столкнулся со следующей ошибкой для моего следующего фрагмента кода:

Ниже приведен полный код, который я построил для модели

Код начинается здесь

    data=pd.read_csv("C:\\Users\\ezabhkh\\Desktop\\Machine Learning\\Data 
    Sets\\50_Startups.csv")

    features=data.iloc[:,:-1].values
    label=data.iloc[:,[-1]].values

Здесь я выполнил кодировку Label

    from sklearn.preprocessing import LabelEncoder
    from sklearn.preprocessing import OneHotEncoder
    state=LabelEncoder()
    features[:,3]=state.fit_transform(features[:,3])

Здесь я использовали перенос столбца.

    from sklearn.compose import ColumnTransformer
    transformer = ColumnTransformer([('one_hot_encoder', 
    OneHotEncoder(categories='auto'), [3])],remainder='passthrough')
    features=transformer.fit_transform(features)

Здесь начинается код модели статистики

    featuresAllIN=np.append(np.ones((50,1)).astype(int), features, axis=1)

    import statsmodels.formula.api as stat
    model_1=stat.OLS(endog=label ,exog=featuresAllIN).fit()
    model_1.summary()

Отсюда начинается ошибка

    --------------------------------------------------------------------------
    TypeError                                 Traceback (most recent call 
    last)
    <ipython-input-26-ae973551e2ea> in <module>
          1 #Step 3 -> perform OLS and get summary
          2 import statsmodels.formula.api as stat
    ----> 3 model_1=stat.OLS(endog=label ,exog=featuresAllIN).fit()
          4 model_1.summary()

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\regression\linear_model.py in __init__(self, endog, 
    exog, missing, hasconst, **kwargs)
        815                  **kwargs):
        816         super(OLS, self).__init__(endog, exog, missing=missing,
    --> 817                                   hasconst=hasconst, **kwargs)
        818         if "weights" in self._init_keys:
        819             self._init_keys.remove("weights")

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\regression\linear_model.py in __init__(self, endog, 
    exog, weights, missing, hasconst, **kwargs)
        661             weights = weights.squeeze()
        662         super(WLS, self).__init__(endog, exog, missing=missing,
    --> 663                                   weights=weights, 
    hasconst=hasconst, **kwargs)
        664         nobs = self.exog.shape[0]
        665         weights = self.weights

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\regression\linear_model.py in __init__(self, endog, 
    exog, 
    **kwargs)
        177     """
        178     def __init__(self, endog, exog, **kwargs):
    --> 179         super(RegressionModel, self).__init__(endog, exog, 
    **kwargs)
        180         self._data_attr.extend(['pinv_wexog', 'wendog', 'wexog', 
    'weights'])
        181 

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
   packages\statsmodels\base\model.py in __init__(self, endog, exog, **kwargs)
        210 
        211     def __init__(self, endog, exog=None, **kwargs):
    --> 212         super(LikelihoodModel, self).__init__(endog, exog, 
    **kwargs)
        213         self.initialize()
        214 

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
   packages\statsmodels\base\model.py in __init__(self, endog, exog, **kwargs)
         62         hasconst = kwargs.pop('hasconst', None)
         63         self.data = self._handle_data(endog, exog, 
    missing,hasconst,
    ---> 64                                       **kwargs)
         65         self.k_constant = self.data.k_constant
         66         self.exog = self.data.exog

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\base\model.py in _handle_data(self, endog, exog, 
    missing, hasconst, **kwargs)
         85 
         86     def _handle_data(self, endog, exog, missing, hasconst, 
    **kwargs):
    ---> 87         data = handle_data(endog, exog, missing, hasconst, 
    **kwargs)
         88         # kwargs arrays could have changed, easier to just attach 
    here
         89         for key in kwargs:

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\base\data.py in handle_data(endog, exog, missing, 
    hasconst, **kwargs)
        631     klass = handle_data_class_factory(endog, exog)
        632     return klass(endog, exog=exog, missing=missing, 
    hasconst=hasconst,
    --> 633                  **kwargs)

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\base\data.py in __init__(self, endog, exog, missing, 
    hasconst, **kwargs)
         77 
         78         # this has side-effects, attaches k_constant and const_idx
    ---> 79         self._handle_constant(hasconst)
         80         self._check_integrity()
         81         self._cache = resettable_cache()

    ~\AppData\Local\Continuum\anaconda3\lib\site- 
    packages\statsmodels\base\data.py in _handle_constant(self, hasconst)
        130             check_implicit = False
        131             ptp_ = self.exog.ptp(axis=0)
    --> 132             if not np.isfinite(ptp_).all():
        133                 raise MissingDataError('exog contains inf or 
    nans')
        134             const_idx = np.where(ptp_ == 0)[0].squeeze()

    **TypeError: ufunc 'isfinite' not supported for the input types, and the 
    inputs could not be safely coerced to any supported types according to the 
    casting rule ''safe''**


   [Picture of data][1]

[1]: https://i.stack.imgur.com/kzSqf.png

...