stereoF

Results 10 issues of stereoF

When I repeat the example of dowhy documents (https://microsoft.github.io/dowhy/readme.html) about dowhy pandas api as: ![image](https://user-images.githubusercontent.com/16349292/65110973-cb7de900-da0c-11e9-9047-59678cd3a445.png) the error raised: ![image](https://user-images.githubusercontent.com/16349292/65111001-e2bcd680-da0c-11e9-8ca1-6a6d7f04abbd.png) python 3.5.7 macOS 10.14.6

Most of the development work is carried out in WSL2. Can the cursor be made to support opening paths and resources in WSL2 like in VS Code?

enhancement
question
user-support

### Please describe the issue Ibis has implemented something I've been particularly wanting to do since 2019, so I would like to learn how it's done through the source code....

docs

### Is your feature request related to a problem? I would like to propose a feature request for your consideration: is there any plan to support data retrieval in batches?...

feature

### What happened? When constructing an ibis dataframe, convert the original field to an integer type using: `df = df.mutate(feat=df['feat'].cast('int32')) ` When writing to the database, the corresponding field in...

bug
clickhouse
trino

### What happened? ![image](https://github.com/ibis-project/ibis/assets/16349292/7c233d72-fea5-496e-922e-d5e33267ca58) ![image](https://github.com/ibis-project/ibis/assets/16349292/2fd5d0ea-5490-4814-9e75-7bc38151b893) ![image](https://github.com/ibis-project/ibis/assets/16349292/c1f4778a-892b-4c34-9071-49c613d11d3d) ![image](https://github.com/ibis-project/ibis/assets/16349292/b6e74d3b-32d0-4fad-a6d4-40969fc33cee) after chain join ``` df = df_user.join(df_portrait, df_user.user_id == df_portrait.user_id, how='inner') \ .join(df_user_shift_7d, _.user_id == df_user_shift_7d.user_id_shift_7d, how='left') \ .join(df_portrait_shift_7d, _.user_id == df_portrait_shift_7d.user_id_shift_7d, how='left')...

bug
clickhouse

### What happened? I have an Ibis dataframe named df with a column named account_id: `df.columns` `['user_id', 'account_id', 'algo_user_addsteps_rate_30d', 'algo_user_pay_num', ..., 'province_shift_7d', 'city_shift_7d']` When I alias this dataframe as df...

bug
clickhouse

### What happened? In version 8.0.0, the following code works fine: ``` import ibis from dotenv import load_dotenv import os load_dotenv() catalog = os.getenv('TRINO_CATALOG') schema = os.getenv('TRINO_SCHEMA') user = os.getenv('TRINO_USER')...

bug

### Describe the bug When attempting to cross-compile the project for the `armv7-linux-androideabi` target, the build fails with an arithmetic overflow error in the `wasmer-compiler` crate. Additionally, there are warnings...

🕵️ needs investigation

Assuming I am already using Wasmer in headless mode on Android and iOS via the C-API, and I have written the logic that needs to be hot-reloaded in C, how...

❓ question