fromDataFrame() example doesn't succeed for two reasons. See inline comments below.
uri <- tempfile()
## turn factor into character
irisdf <- within(iris, Species <- as.character(Species))
fromDataFrame(irisdf, uri)
arr <- tiledb_array(uri, return_as="data.frame", sparse=FALSE) # NOTE: `sparse` argument not in `tiledb_array`
newdf <- arr[]
all.equal(iris, newdf) # NOTE: iris -> irisdf
fromDataFrame()example doesn't succeed for two reasons. See inline comments below.