Hi dev, I have read the article "Introducing the Apache Arrow C Data Interface" <https://arrow.apache.org/blog/2020/05/03/introducing-arrow-c-data-interface/> and I have a questions about pass data between two languages:
In the article, R library reticulate is used for sharing data between R and Python. Is it possible to share data without external libraries? Let's say I want to create data from R and then read it from my python script. If it is possible, are there any tutorials on this? I believe I have to record the memory address of the data in R, correct? Thanks.