alteryx / alteryx/featuretools
Remove extra if block in calculate_chunk that was added due to Koalas bug
- 主要言語
- Python
- スター
- 7.7k
- フォーク
- 915
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
### Remove extra if block in calculate_chunk that was added due to Koalas bug
During the Woodwork integration, a code block was added to address an issue where appending Koalas dataframes could cause the Woodwork schema to be invalidated as a result of Koalas changing the dtypes of the columns unexpectedly.
[Koalas Issue 2193](https://github.com/databricks/koalas/issues/2193) was created to resolve this issue. Once the Koalas issue is closed and a fix is released, we should be able to delete the code block shown below from the `calculate_chunk` method in `calculate_feature_matrix.py`.
```python
if not fm.ww.schema:
# Koalas bug sometimes causes schema to be invalidated
# after `append` so need to reinitialize WW
fm.ww.init(**ww_init_kwargs)
```
コントリビューションガイド
評価
この issue はまだ評価されていません。