Module contributed by Matteo Ghetta - funded by Scuola Superiore Sant’Anna
O Processing permite editar e executar scripts R no QGIS.
Warning
R has to be installed on your computer and the PATH has to correctly set up. Moreover Processing just calls the external R packages, it is not able to install them. So be sure to install external packages directly in R. See the related chapter in the user manual.
Note
Se tiver problemas com pacotes, talvez estejam relacionados com pacotes obrigatórios necessários pelo Processing, como sp, rgdal e raster.
Adding a script is very simple. Open the Processing toolbox and just click on the R ‣ Tools ‣ Create new R script.
Note
If you cannot see R in Processing, you have to activate it in Processing ‣ Options ‣ Providers
It opens a script editor window in which you have to specify some parameters before you can add the script body.
In this tutorial we are going to create a boxplot of a vector layer field.
Open the r_intro.qgs QGIS project under the exercise_data/processing/r_intro/ folder.
Open the editor and start writing at the beginning of it.
You must specify some parameters before the script body:
the name of the group in which you want to put your script:
##plots=group
so you will find your script in the plots group in the Processing toolbox.
you have to tell Processing that you want to display a plot (just in this example):
##showplots
this way in the Result Viewer of Processing you’ll see the plot.
You need also to tell Processing with which kind of data you are working with. In this example we want to create a plot from a field of a vector layer:
##Layer=vector
Processing knows now that the input is a vector. The name Layer is not important, what matters is the vector parameter.
Finally, you have to specify the input field of the vector layer you want to plot:
##X=Field Layer
So Processing knows that you have called X the Field Layer.
Now that you have set up the heading of the script you can add the function:
boxplot(Layer[[X]])
Notice that boxplot is the name of the R function itself that calls Layer as dataset and X as the field of the dataset.
Warning
The parameter X is within a double square bracket [[]]
The final script looks like this:
##Vector processing=group
##showplots
##Layer=vector
##X=Field Layer
boxplot(Layer[[X]])
Save the script in the default path suggested by Processing. The name you choose will be the same as the name of the script you’ll find in the Processing toolbox.
Note
You can save the script in other paths, but Processing isn’t able to upload them automatically and you have to upload all the scripts manually
Now just run it using the button on the top of the editor window:
Otherwise, once the editor window has been closed, use the text box of Processing to find your script:
You are now able to fill the parameters required in the Processing algorithm window:
Click on Run.
The Result window should be automatically opened, if not, just click on Processing ‣ Result Viewer....
This is the final result you’ll see:
Note
You can open, copy and save the image by right clicking on the plot
With an R script you can also create a vector and automatically load it in QGIS.
The following example has been taken from the Random sampling grid script that you can download from the online collection R ‣ Tools ‣ Download R scripts from the on-line collection.
The aim of this exercise is to create a random point vector in a layer extent using the spsample function of the sp package.
As before we have to set some parameters before the script body:
specify the name of the group in which you want to put your script, for example Point pattern analysis:
##Point pattern analysis=group
set the layer that will contain the random points:
##Layer=vector
set the number of points that are going to be created:
##Size=number 10
Note
10 is going to be the default value. You can change this number or you can leave the parameter without a default number
specify that the output is a vector layer:
##Output= output vector
Now you can add the body of the function:
run the spsample function:
pts=spsample(Layer,Size,type="random")
this way the function takes the extent of the Layer, the number of points is taken from the Size parameter and the point generation is random
Write the line that contains the parameters of the output:
Output=SpatialPointsDataFrame(pts, as.data.frame(pts))
The final script looks like this:
##Point pattern analysis=group
##Layer=vector
##Size=number 10
##Output= output vector
pts=spsample(Layer,Size,type="random")
Output=SpatialPointsDataFrame(pts, as.data.frame(pts))
Save it and run it, clicking on the running button.
In the new window type in the right parameters:
and click on run.
Resulting points will be displayed in the map canvas
Beware that Processing uses some special syntax to get the results out of R: