Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions subjects/ai/data-wrangling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ We suggest using the most recent one.

The goal of this exercise is to set up the Python work environment with the required libraries.

**Note:** For each quest, your first exercice will be to set up the virtual environment with the required libraries.
**Note:** For each quest, your first exercise will be to set up the virtual environment with the required libraries.

I recommend to use:

- the **last stable versions** of Python.
- the virtual environment you're the most confortable with. `virtualenv` and `conda` are the most used in Data Science.
- one of the most recents versions of the libraries required
- the virtual environment you're the most comfortable with. `virtualenv` and `conda` are the most used in Data Science.
- one of the most recent versions of the libraries required

1. Create a virtual environment named `ex00`, with a version of Python >= `3.9`, with the following libraries: `pandas`, `numpy` ,`tabulate` and `jupyter`.

Expand Down Expand Up @@ -146,7 +146,7 @@ Use the code below to generate the DataFrames. `market_data` contains fake marke
#generate tickers
tickers = ['AAPL', 'FB', 'GE', 'AMZN', 'DAI']

#create indexs
# create indexes
index_alt = pd.MultiIndex.from_product([all_dates, tickers], names=['Date', 'Ticker'])
index = pd.MultiIndex.from_product([business_dates, tickers], names=['Date', 'Ticker'])

Expand Down
2 changes: 1 addition & 1 deletion subjects/ai/data-wrangling/audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
df.groupby("group")[['sequence']].apply(winsorize, [0.05,0.95])
```

- https://towardsdatascience.com/how-to-use-the-split-apply-combine-strategy-in-pandas-groupby-29e0eb44b62e
- [How to use the split apply combine strategy in pandas groupby](https://pandas.pydata.org/docs/user_guide/groupby.html)

---

Expand Down
Loading