Dataset not Reachable; Division by zero

I am using pyrasgo version 1.3.2

I am submitting code like:

rasgo.get.dataset(123).to_df()

I am getting an error that says:

"pyrasgo.api.error.APIError: Dataset table is not reachable: 100051 (22012): Division by zero"

But .preview() works fine?!?!

In the dataset transformation chain, there is probably a situation that divides, and it is possible to encounter a divide by zero condition.

The reason preview() doesn’t fail is probably because this condition is rare, and preview() will only return 10 rows.

Check the transformation logic for this situation and properly handle zeros.

This topic was automatically closed after 365 days. New replies are no longer allowed.