MislavSag opened a new issue, #45935:
URL: https://github.com/apache/arrow/issues/45935

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   I am trying to import data from parquet dataset using R arrow
   
   ```
     open_dataset("/home/sn/data/equity/us/predictors_daily/forecasts", format 
= "parquet") %>%
       mutate(ets_last_66_Lo80 = try_cast(ets_last_66_Lo80, float64())) %>%
       filter(date == dates_seq[100]) %>%
       select(88) %>%
       collect()
   ```
   I got following error
   
   ```
   Error in `compute.arrow_dplyr_query()`:
   ! Invalid: Failed to parse string: '' as a scalar of type double
   Run `rlang::last_trace()` to see where the error occurred.
   ```
   I tried to remove "" in followin ways:
   
   - using if_else - not uspported by arrow
   - using case_when - not uspported by arrow
   - using != - not uspported by arrow
   
   ### Component(s)
   
   R


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to