![R Graphics.ppt_第1頁](http://file1.renrendoc.com/fileroot2/2020-1/31/37287b53-5aa8-4f8d-af87-b5aef5123847/37287b53-5aa8-4f8d-af87-b5aef51238471.gif)
![R Graphics.ppt_第2頁](http://file1.renrendoc.com/fileroot2/2020-1/31/37287b53-5aa8-4f8d-af87-b5aef5123847/37287b53-5aa8-4f8d-af87-b5aef51238472.gif)
![R Graphics.ppt_第3頁](http://file1.renrendoc.com/fileroot2/2020-1/31/37287b53-5aa8-4f8d-af87-b5aef5123847/37287b53-5aa8-4f8d-af87-b5aef51238473.gif)
![R Graphics.ppt_第4頁](http://file1.renrendoc.com/fileroot2/2020-1/31/37287b53-5aa8-4f8d-af87-b5aef5123847/37287b53-5aa8-4f8d-af87-b5aef51238474.gif)
![R Graphics.ppt_第5頁](http://file1.renrendoc.com/fileroot2/2020-1/31/37287b53-5aa8-4f8d-af87-b5aef5123847/37287b53-5aa8-4f8d-af87-b5aef51238475.gif)
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、R Graphics,SCS Short Course March 14, 2008,Archeology,Archeological expedition Basic graphics easy and flexible Lattice (trellis) graphics powerful but less flexible Rgl nice 3d but challenging Tons of new stuff: e.g. install.packages(“heplots”) library(heplots) library(help=heplots) Special purpose
2、: library(car): avp In development: Plot3d.R,Goals for graphics,Two purposes for graphics: Exploratory need something quick that can produce graphs as fast as your mind can grasp them Presentation need flexibility to meet publication requirements,Why Lattice=Trellis graphics,Lattice (trellis) graphi
3、cs: developed at Bell Labs in early 80s Marginality vs Conditional association Motivation was problem of seeing relevant structures in higher dimensional data, the nub of the problem captured by Simpsons Paradox: two dimensional views of data show marginal association But conditional association can
4、 be entirely different Interaction: conditional association can be different for different values of moderator variables,Smoking and Life Expectancy,Source of demographic data (from the CIA): Two variables: - Life Expectancy - Cigarette Consumption Per Capita dl = read.csv(http:/www.math.yorku.ca/ge
5、orges/Data/CigLE.csv) head(dl),Data, head(dl) X Country Continent LE CigCon 1 1 Afghanistan Asia 35.5 98 2 2 Albania Europe 61.4 NA 3 3 Algeria Africa 60.6 1021 4 4 Andorra Europe 72.2 NA 5 5 Angola Africa 33.4 571 6 6 Antigua and Barbuda South America 61.9 NA tail(dl) X Country Continent LE CigCon
6、184 184 Vietnam Asia 61.3 NA 185 185 Yemen Asia 49.3 NA 186 186 Zambia Africa 34.9 408 187 187 Ethiopia Africa NA 87 188 188 Venezuela South America NA 1079 189 189 Zimbabwe Africa NA 399,Regression, table( LE = !is.na( dl$LE) , CigCon = !is.na(dl$CigCon) CigCon LE FALSE TRUE FALSE 0 3 TRUE 83 103 f
7、it = lm( LE CigCon , dl , na.action = na.omit) summary(fit) Call: lm(formula = LE CigCon, data = dl, na.action = na.omit) Residuals: Min 1Q Median 3Q Max -19.4576 -5.8225 0.8188 5.3636 17.8291 Coefficients: Estimate Std. Error t value Pr(|t|) (Intercept) 4.799e+01 1.371e+00 34.995 2e-16 * CigCon 8.5
8、28e-03 9.007e-04 9.468 1.33e-15 * - Signif. codes: 0 * 0.001 * 0.01 * 0.05 . 0.1 1 Residual standard error: 8.158 on 101 degrees of freedom (86 observations deleted due to missingness) Multiple R-Squared: 0.4702, Adjusted R-squared: 0.465 F-statistic: 89.64 on 1 and 101 DF, p-value: 1.333e-15,Interp
9、reting coefficient,Regression coefficient for CigCon is 0.008529 An increase in 1 cigarette per year increases Life Expectancy by 0.008529 years An increase in 1 cigarette per day increases Life Expectancy by 365 x 0.008529 = 3.11 years,All it takes is 3 cigarettes a day to add 10 years to your life
10、.,Why graphics!,Always look at your data The plot function: The Joys of Object-Oriented Programming: plot is a generic function so it does different things to different kinds of objects What does it do to a regression object? plot ( fit ),Basic regression diagnostics,So plot a fitted regression to g
11、et some diagnostic plots But diagnostics not enough to inspire understanding What happens if we plot a data frame? plot( dl ),Basic graphics functions in R,Axis Generic function to add an Axis to a Plot abline Add Straight Lines to a Plot arrows Add Arrows to a Plot assocplot Association Plots axTic
12、ks Compute Axis Tickmark Locations axis Add an Axis to a Plot axis.POSIXct Date and Date-time Plotting Functions barplot Bar Plots box Draw a Box around a Plot boxplot Box Plots bxp Draw Box Plots from Summaries cdplot Conditional Density Plots contour Display Contours coplot Conditioning Plots curv
13、e Draw Function Plots dotchart Cleveland Dot Plots filled.contour Level (Contour) Plots fourfoldplot Fourfold Plots frame Create / Start a New Plot Frame graphics-package The R Graphics Package grid Add Grid to a Plot hist Histograms hist.POSIXt Histogram of a Date or Date-Time Object,Basic graphics
14、 functions in R,identify Identify Points in a Scatter Plot image Display a Color Image layout Specifying Complex Plot Arrangements legend Add Legends to Plots lines Add Connected Line Segments to a Plot locator Graphical Input matplot Plot Columns of Matrices mosaicplot Mosaic Plots mtext Write Text
15、 into the Margins of a Plot pairs Scatterplot Matrices panel.smooth Simple Panel Plot par Set or Query Graphical Parameters persp Perspective Plots pie Pie Charts,Basic graphics functions in R,Generic function plot and its methods: plot Generic X-Y Plotting plot.data.frame Plot Method for Data Frame
16、s plot.default The Default Scatterplot Function plot.design Plot Univariate Effects of a Design or Model plot.factor Plotting Factor Variables plot.formula Formula Notation for Scatterplots plot.histogram Plot Histograms plot.table Plot Methods for table Objects plot.window Set up World Coordinates
17、for Graphics Window plot.xy Basic Internal Plot Function,Basic graphics functions in R,points Add Points to a Plot polygon Polygon Drawing rect Draw One or More Rectangles rug Add a Rug to a Plot screen Creating and Controlling Multiple Screens on a Single Device segments Add Line Segments to a Plot
18、 spineplot Spine Plots and Spinograms stars Star (Spider/Radar) Plots and Segment Diagrams stem Stem-and-Leaf Plots stripchart 1-D Scatter Plots strwidth Plotting Dimensions of Character Strings and Math Expressions sunflowerplot Produce a Sunflower Scatter Plot symbols Draw Symbols (Circles, Squares, Stars, Thermometers
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 冷凍產(chǎn)品購銷合同年
- 單位租車合同協(xié)議
- 航空物流與服務(wù)作業(yè)指導書
- 購買信報箱合同
- 互聯(lián)網(wǎng)金融產(chǎn)品開發(fā)作業(yè)指導書
- 經(jīng)營部國際合作處外事接待管理員崗位說明書
- 裝修合同大全
- 2025年吉林市b2貨運資格證全題
- 2025年岳陽貨運從業(yè)資格證考試試題及答案
- 2025年鄭州駕??荚囏涍\從業(yè)資格證模擬考試
- 2022年全球及中國肥胖人口數(shù)量及肥胖帶來的危害分析:預計2025年中國超重及肥胖人數(shù)將突破2.65億人圖
- 2022年垃圾焚燒發(fā)電項目可行性研究報告
- 無菌技術(shù)操作-PPT課件
- JTT888-2020公共汽車類型劃分及等級評定_(高清-最新)
- 某天然氣公司場站設(shè)備管理制度
- T_CHES 22-2018 渡槽安全評價導則
- 臨時碼頭施工方案
- 汶川地震災后恢復重建生產(chǎn)力布局和產(chǎn)業(yè)調(diào)整專項規(guī)劃
- 教師專業(yè)發(fā)展與職業(yè)生涯規(guī)劃優(yōu)秀課件
- 深化內(nèi)部改革轉(zhuǎn)換經(jīng)營機制強推內(nèi)部市場機制管理
- 稅務(wù)師事務(wù)所收費標準
評論
0/150
提交評論