- Web Application Development with R Using Shiny(Third Edition)
- Chris Beeley Shitalkumar R. Sukhdeve
- 344字
- 2021-07-16 17:52:06
The R console
Windows and Mac OS X users can run the R application to launch the R console. Linux and Mac OS X users can also run the R console straight from the Terminal by typing R.
In either case, the R console itself will look something like the following screenshot:

R will respond to your commands right from the Terminal. Let's have a go. Run the following command in the R console:
> 2 + 2 [1] 4
The [1] phrase tells you that R returned one result, in this case, 4. The following command shows you how to print Hello world:
> print("Hello world!") [1] "Hello world!"
The following command shows the multiples of pi:
> 1:10 * pi [1] 3.141593 6.283185 9.424778 12.566371 15.707963 18.849556 [7] 21.991149 25.132741 28.274334 31.415927
This example illustrates vector-based programming in R. The 1:10 phrase generates the numbers 1:10 as a vector, and each is then multiplied by pi, which returns another vector, the elements each being pi times larger than the original. Operating on vectors is an important part of writing simple and efficient R code. As you can see, R again indexes the values it returns at the console, with the seventh value being 21.99.
One of the big strengths of using R is the graphics capability, which is excellent, even in a vanilla installation of R (these graphics are referred to as the base graphics because they ship with R). When adding packages such as ggplot2 and some of the JavaScript-based packages, R becomes a graphical tour de force, whether producing statistical, mathematical, or topographical figures, or indeed any other type of graphical output. To get a flavor of the power of the base graphics, simply type the following in the Console and see the types of plots that can be made using R:
> demo(graphics)
You can also type the following command:
> demo(persp)
There will be more on ggplot2 and base graphics later in the chapter.
Enjoy! There are many more examples of R graphics at r-graph-gallery.com.
- 廣電5G從入門到精通
- 網(wǎng)絡(luò)云百問百答
- 自動駕駛網(wǎng)絡(luò):自智時代的網(wǎng)絡(luò)架構(gòu)
- GPS/GNSS原理與應(yīng)用(第3版)
- 物聯(lián)網(wǎng)之魂:物聯(lián)網(wǎng)協(xié)議與物聯(lián)網(wǎng)操作系統(tǒng)
- JBoss EAP6 High Availability
- Hands-On Full Stack Development with Spring Boot 2 and React(Second Edition)
- 新手易學(xué):新手學(xué)淘寶開店
- 5G+區(qū)塊鏈
- 數(shù)據(jù)血緣分析原理與實踐
- 互聯(lián)網(wǎng)心理學(xué):新心理與行為研究的興起
- 物聯(lián)網(wǎng)系統(tǒng)設(shè)計
- 計算機網(wǎng)絡(luò)(項目教學(xué)版)
- 5G智聯(lián)萬物:輕松讀懂5G應(yīng)用與智能未來
- Alfresco Share