Dose Response (R) node

Hi
I am running Dose Response (R) node from HCS Tools using Knime . I did set up R server. Also, I checked the Knime preference and it is looks fine. But I am having problems such as below :

ERROR Dose Response (R) 3:4 Execute failed: Can’t open png graphics device:
Error in png(“rmPlotFile.png”, width = 1000, height = 700) :
unable to start png() device

I am wondering if any one came across this problems.

Regards
K

1 Like

Hi,
I have never seen such a problem before. Maybe it’s worth to check stackoverflow answers?
Did you try to create a png in R? (to see whether the problem comes from R or from the node)

Best,
Antje

Hi Antje,
png is auto selected in the Dose Response R node. However, I tried to make other format without success.

K

Access right problems?
Did you try to create a png with R? Like this for example:

outfile <- tempfile(fileext='.png')
# Generate the PNG
png(outfile, width=400, height=300)
hist(rnorm(100))
dev.off()
outfile
1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.