I have no issue running below code in my local RStudio.
library(flextable)
img.file <- file.path( R.home("doc"), "html", "logo.jpg" )
library(officer)
myft <- flextable( head(iris))
myft <- compose( myft, i = 1:3, j = 1,
value = as_paragraph(
as_image(src = img.file, width = .20, height = .15),
" blah blah ",
as_chunk(Sepal.Length, props = fp_text(color = "red"))
),
part = "body")
ft <- autofit(myft)
ft
But on the Cloud R (meaning on Azure, which I install RStudio), the above same code shows the error below:
Error in as_chunk(Sepal.Length, props = fp_text(color = "red")) :
object 'Sepal.Length' not found
Could anyone help to see what issue causes it?
Thanks.