99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀R語言餅圖圖表
R語言餅圖圖表
2017-06-19
收藏

R語言餅圖圖表

R語言編寫有許多庫用來創(chuàng)建圖表和圖形。餅圖是表示不同顏色的值的圓片。切片標記和對應于各切片的數(shù)量也被表示在圖表中。

R語言中的餅圖使用 pie()函數(shù),接受正數(shù)作為一個向量輸入來創(chuàng)建。附加參數(shù)用于控制標簽,顏色,標題等

語法

使用R創(chuàng)建一個餅圖基本語法:

pie(x, labels, radius, main, col, clockwise)

以下是所使用的參數(shù)的說明:

x - 是包含在餅圖中使用的數(shù)值的矢量。

labels - 用于給出切片的描述。

radius - 指示餅圖的圓的半徑。(-1和+1之間的值)。

main - 指示圖表的標題。

col - 指示調(diào)色板。

clockwise - 是一個邏輯值指示該切片繪制順時針或逆時針方向。

示例

只用了輸入向量和標簽創(chuàng)建了一個非常簡單的餅圖。下面的腳本將創(chuàng)建并保存餅圖到R的當前工作目錄。

# Create data for the graph.
x <- c(21, 62, 10, 53)
labels <- c("London", "New York", "Singapore", "Mumbai")

# Give the chart file a name.
png(file = "city.jpg")

# Plot the chart.
pie(x,labels)

# Save the file.
dev.off(

當我們上面的代碼執(zhí)行時,它產(chǎn)生以下結(jié)果:

餅圖的標題和顏色

我們可以通過添加函數(shù)更多的參數(shù)擴展圖表的特性。我們將使用參數(shù) main 作為標題添加到圖表,另一個參數(shù)是 col,將利用彩虹調(diào)色板在繪制的圖表時。托板的長度應相同于圖表值的數(shù)目。因此,我們使用 length(x)。

示例

下面的腳本將創(chuàng)建并保存餅圖到R的當前工作目錄。

# Create data for the graph.
x <- c(21, 62, 10, 53)
labels <- c("London", "New York", "Singapore", "Mumbai")

# Give the chart file a name.
png(file = "city_title_colours.jpg")

# Plot the chart with title and rainbow color pallet.
pie(x, labels, main="City pie chart", col=rainbow(length(x)))

# Save the file.
dev.off()

當我們上面的代碼執(zhí)行時,它產(chǎn)生以下結(jié)果:

切片百分比和圖表圖例

我們可以通過創(chuàng)建額外的圖表變量添加切片百分比和圖表圖例。

# Create data for the graph.
x <-  c(21, 62, 10,53)
labels <-  c("London","New York","Singapore","Mumbai")


piepercent<- round(100*x/sum(x), 1)

# Give the chart file a name.
png(file = "city_percentage_legends.jpg")

# Plot the chart.
pie(x, labels=piepercent, main="City pie chart",col=rainbow(length(x)))
legend("topright", c("London","New York","Singapore","Mumbai"), cex=0.8, fill=rainbow(length(x)))

# Save the file.
dev.off()

當我們上面的代碼執(zhí)行時,它產(chǎn)生以下結(jié)果:

3D 餅形圖

餅圖和3個維度需要使用額外的軟件包繪制。軟件包:plotrix 稱為 pie3D(一個函數(shù),被用于此目的)。

# Get the library.
library(plotrix)
# Create data for the graph.
x <-  c(21, 62, 10,53)
lbl <-  c("London","New York","Singapore","Mumbai")

# Give the chart file a name.
png(file = "3d_pie_chart.jpg")

# Plot the chart.
pie3D(x,labels=lbl,explode=0.1,
   main="Pie Chart of Countries ")

# Save the file.
dev.off()

當我們上面的代碼執(zhí)行時,它產(chǎn)生以下結(jié)果:

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗證碼對象,之后可以使用它調(diào)用相應的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務器是否宕機 new_captcha: data.new_captcha, // 用于宕機時表示是新驗證碼的宕機 product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }