Good morning,
I have some difficulty to add a node R View Table on a KNIME dashboard via the “Node” usage and Layout.
As you see here we be into the component created for the dashboard where we have all the chart nodes that have to appears:
The result of the R view (Table) Node is the following:
With this code:
plot(knime.in)
knime.out ← knime.in
x = knime.in$“RETURN_TYPE”
y = knime.in$“Percent*(N. of Cases NOT DISTINCT KM1)”
df ← data.frame(x,y)
library(ggplot2)
ggplot(df,aes(x,y,fill=y))+ geom_bar(stat=“identity”) + scale_fill_gradient(low=“blue”,high=“red”) + theme_classic()
When I open the node usage and layout, where we build the dashboard ,
As you see, R View (Table) should be appear on the left for after moving it on the right , but it does not appears and then I cannot add on the right for add to dashboard:
Have you had the same issue? Have you found some workaround for solving this problem?
Kind Regards