- Predictive Analytics Using Rattle and Qlik Sense
- Ferran Garcia Pagans
- 291字
- 2021-07-16 13:40:16
Downloading and installing Rattle
Rattle is an R package, which is a collection of functions and data someone else has developed, and we can use it in our programs. If you already have some hands-on experience with R, then this task should be a much lighter task.
Before starting with the installation, remember that you need an active Internet connection. The following are the steps to install Rattle:
- We will install Rattle from R Console; to open it double-click on the R x64 3.1.1 desktop icon.
- In R Console, type
install.packages("rattle")
and press Enter. The R Console will show you a list of CRAN mirrors; choose a download mirror that is the closest to your geographic location and R will download the Rattle package, as shown here: - After you have downloaded it, type
library(rattle)
and R will load the Rattle package into memory, and you will be able to use it. Use therattle()
command to start Rattle:Note
Rattle needs other R packages to work properly, the first time you open Rattle, the system will ask your permission to install some packages; in order to execute Rattle, you have to accept the installation of these packages.
- To exit, click on the Quit icon from Rattle GUI and type
q()
in the R Console:Tip
If you are from a non-English speaking country, you've probably installed everything in English, but Rattle's texts appear in your own language. Rattle will work fine in your language, but this book is written in English and it will refer to Rattle's functions and menus using English names. If you prefer to execute Rattle in English, quit Rattle and type
Sys.setenv(LANGUAGE="en")
in your R Console and start Rattle again.Tip
Rattle's menu now appears in English.
- CentOS 7 Server Deployment Cookbook
- Web開發的貴族:ASP.NET 3.5+SQL Server 2008
- SAP BusinessObjects Dashboards 4.1 Cookbook
- Cybersecurity Attacks:Red Team Strategies
- Visual Foxpro 9.0數據庫程序設計教程
- Visual C#.NET Web應用程序設計
- 快速入門與進階:Creo 4·0全實例精講
- 深入理解C指針
- Oracle數據庫編程經典300例
- Moodle 3 Administration(Third Edition)
- JavaScript從入門到精通(視頻實戰版)
- 進入IT企業必讀的324個Java面試題
- Visual Basic程序設計基礎
- Python高性能編程(第2版)
- Serverless工程實踐:從入門到進階