Skip to main content

Dear fellow FME users,

 

I am trying to delve a bit into the Rcaller in combination with asking data from a website (CBS). I have a bit of R experience, but not so much with the Rcaller. With Rstudio the code works without a problem, however I don't manage to succeed in FME desktop 2022.2.1.0

I am running the code below. I am aware that you need to adjust the R code a bit before making it work in FME desktop, so I was wondering whether I have to adjust the current code. In my case the Rcaller is running and it seems like it's doing nothing or stuck. I therefore I assume that the code is probably not working. Can someone else test and see how I have to adjust the current code? 

 

Furthermore I am looking for blog posts that delve into the Rcaller. I would like to learn more about the rcaller and make myself a bit more proficient.

# Run once:
install.packages("cbsodataR")
 
library(cbsodataR)
 
# Downloading table list
toc <- cbs_get_toc()
head(toc)
 
# Downloading entire dataset (can take up to 30s)
data <- cbs_get_data("83906NED")
head(data)
 
# Downloading metadata
metadata <- cbs_get_meta("83906NED")
head(metadata)

 

 

afbeelding

I've not used the RCaller myself (I'm only using Python), but maybe this tutorial can be helpful: https://community.safe.com/s/article/rcaller-ins-and-outs-of-using-the-rcaller


Reply