-
Updated
Dec 18, 2021 - R
feature-selection
Here are 851 public repositories matching this topic...
-
Updated
Jun 27, 2021 - Jupyter Notebook
-
Updated
Feb 14, 2017 - Jupyter Notebook
-
Updated
Dec 15, 2018 - Jupyter Notebook
-
Updated
May 8, 2019 - Python
-
Updated
Dec 15, 2021 - Jupyter Notebook
Just reviewing the docs and found this under the AutoML User Guide:
We should figure out a way to deal with this kind of thing. I think a couple of options here are:
- Modifying the cell to only show the first few keys or so of the output.
- Modifying the output cell so that
-
Updated
Oct 4, 2021 - Python
-
Updated
Dec 17, 2021 - Python
-
Updated
Mar 16, 2021 - Python
-
Updated
Nov 29, 2020 - Jupyter Notebook
-
Updated
Dec 13, 2021 - Jupyter Notebook
-
Updated
Dec 17, 2021 - Python
-
Updated
Oct 28, 2021 - Jupyter Notebook
-
Updated
May 24, 2020 - Jupyter Notebook
-
Updated
Sep 14, 2018 - Python
Hello, when I ran your code got "TypeError: unhashable type: 'slice' ".Can you help me analyze the problem?thanks
`
import pandas as pd
from sklearn.linear_model import LogisticRegression
from feature_selection_ga import FeatureSelectionGA
data = pd.read_excel("D:\Project_CAD\实验6\data\train_data_1\train_1.xlsx")
x, y = data.iloc[:, :53], data.iloc[:, 56]
model = LogisticRegression()
-
Updated
Apr 1, 2021 - Python
-
Updated
Apr 11, 2021 - Jupyter Notebook
-
Updated
Sep 2, 2021 - Python
-
Updated
Feb 4, 2021 - Python
-
Updated
Apr 5, 2020 - Jupyter Notebook
-
Updated
Apr 29, 2021 - Scala
-
Updated
Dec 8, 2021 - Python
-
Updated
Nov 2, 2021 - Jupyter Notebook
-
Updated
Dec 10, 2021 - Python
-
Updated
Nov 3, 2021 - Python
-
Updated
Jun 17, 2021 - Python
-
Updated
Dec 16, 2021 - C++
Improve this page
Add a description, image, and links to the feature-selection topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the feature-selection topic, visit your repo's landing page and select "manage topics."

The transformer should create computations over windows of past values of the features, and populate them at time t, t being the time of the forecast.
It uses pandas rolling, outputs several comptutations, mean, max, std, etc, and pandas shift to move the computations to the right row.