I am new to R and want to use the Eclipse plugin StatEt with Oxygen.2 Release (4.7.2) on Windows 7.
I tried to create an example plot with the R Graph Builder. I click the "play button" and get following output on the R Code
tab. Furthermore, I hear a "ping" sound.
library(ggplot2)
p <- ggplot(data = mtcars, aes(x = mpg, y = cyl))
p <- p + labs(title = "test")
print(p)
However, I can not see any graph.
=> Is the purpose of the "play action" only to produce the console output?
=> Where can I find documentation about the Graph Builder?
=> What data can I enter to get a first example graph?
Furthermore, when I plot a graph in StatEt, I would expect its output to be in the view "R Graphics". However, a new window is opened by R. I have the option "Set R Graphic view by StatET as default graphic device for new plots in R" enabled on the tab "R Console" in my console run configuration.
=> What is the purpose of the "R Graphics" view?
Example plots:
x<-c(1:10)
y<-sin(x)
plot(x=x,y=y)
-
library(ggplot2)
ggplot(data = mtcars,aes(x=wt))+geom_bar()
Related questions:
How does one install 'rj' in StatET plugin for Eclipse?
ClassNotFoundException for StatEt Eclipse plugin / RJ. Compatibility issue with Java9?
Why doesn't my ecplise console start with StatET
How to index R library for Help view of StatEt Eclipse plugin?