Data-Visualization

統計圖形有“你好,世界”嗎?

  • January 3, 2013

在計算機編程中,有一個經典的第一個用於學習/教授新語言或系統的程序,稱為“hello, world”。 http://en.wikipedia.org/wiki/Hello_world_program

使用圖形包是否有經典的第一個數據可視化?如果是這樣,它是什麼?如果沒有,好的候選人會是什麼?

兩個想法:

A. 當我試圖理解“Hello World”的本質時,它是在編程語言中生成一個打印單行文本的有效程序所必須完成的最低限度。這表明你的“Hello World”應該是一個單變量數據集,這是你可以插入統計或圖形程序的最基本的東西。

B. 我不知道有任何圖形“Hello World”。我能找到的最接近的是包含在各種統計包中的典型數據集,例如 R 的 AirPassengers。在 R 中,Hello World 圖形語句將是:

plot (AirPassengers)  # Base graphics, prints line graph

或者

qplot (AirPassengers) # ggplot2, prints a bar chart

或者

xyplot (AirPassengers) # lattice, which doesn't have a generic plot

就個人而言,我認為最簡單的圖表是折線圖,其中 Y 和 X 中有 N 個項目,範圍為 1:N。但這不是一個標準。

引用自:https://stats.stackexchange.com/questions/46897

comments powered by Disqus

相關問答