Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 91f6a62

Browse files
author
Camilla
authored
Merge pull request #306 from valeriy42/feature-importance
Feature importance for data frame analytics
2 parents 1ddcbca + 227e056 commit 91f6a62

File tree

3 files changed

+4718
-0
lines changed

3 files changed

+4718
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Feature importance for data frame analytics
2+
3+
In the notebook we assume that you have [Elasticsearch 7.6 or later](https://www.elastic.co/downloads/elasticsearch) and you run it locally on the port 9200. If you don't, learn how to [get Elasticsearch up and running](https://www.elastic.co/guide/en/elasticsearch/reference/7.6/getting-started-install.html).
4+
5+
Set up a local instance of Jupyter using the following instructions
6+
7+
1. Set up a virtual environment called `env`
8+
9+
```
10+
python3 -m venv env
11+
```
12+
13+
2. Activate it
14+
15+
```
16+
source env/bin/activate
17+
```
18+
19+
3. Install the required dependencies for your chosen Jupyter notebook
20+
21+
```
22+
pip install -r requirements.txt
23+
```
24+
25+
4. Launch Jupyter
26+
27+
```
28+
jupyter notebook
29+
```
30+

0 commit comments

Comments
 (0)