22

Tufte Sparklines (彼のBeautiful Evidenceに示されているように) は、 YaleToolkitの一部としてベース グラフィックスに複製され、この質問の結果としてさらに完成されました。スパークラインは、私の小さなサイド プロジェクトTufte in Rの一部としてラティスでも作成されています(自己宣伝は意図されていません)。私の目標は、ggplot2で Tufte スパークラインを複製することです。GistSO に関するこの質問への回答として、いくつかのスクリプトが浮かんでいますが、それらのどれも、複製可能な一連のスパークラインを作成するための強固な基盤を提供しません。

ここで、これらの複数のスパークラインを次のように表示したいと思います (ベース グラフィックスで行われ、コードはこちらから入手できます) - ドットは最大/最小値を表し、右端の数字は特定の時系列と灰色の帯の最終値です。大まかな分位範囲を示します。

ここに画像の説明を入力

私は遠く離れていませんが、最小/最大値とラベルの割り当てにこだわっています:

library(ggplot2)
library(ggthemes)
library(dplyr)
library(reshape)
library(RCurl)
dd <- read.csv(text =
  getURL("https://gist.githubusercontent.com/GeekOnAcid/da022affd36310c96cd4/raw/9c2ac2b033979fcf14a8d9b2e3e390a4bcc6f0e3/us_nr_of_crimes_1960_2014.csv"))
d <- melt(dd, id="Year")
names(d) <- c("Year","Crime.Type","Crime.Rate")
dd <- group_by(d, Crime.Type) %>% 
  mutate(color = (min(Crime.Rate) == Crime.Rate | max(Crime.Rate) == Crime.Rate))
ggplot(dd, aes(x=Year, y=Crime.Rate)) + 
  facet_grid(Crime.Type ~ ., scales = "free_y") + 
  geom_line(size=0.3) + geom_point(aes(color = color)) + 
  scale_color_manual(values = c(NA, "red"), guide=F) +
  theme_tufte(base_size = 15) + 
  theme(axis.title=element_blank(), 
        axis.text.y = element_blank(), axis.ticks = element_blank()) +
  theme(strip.text.y = element_text(angle = 0, vjust=0.2, hjust=0)) 

ここに画像の説明を入力

4

1 に答える 1

25

以下は、単一の色付きポイント、および 3 セットのラベルと影付きの四分位範囲を取得するための 1 つの方法です。

# Calculate the min and max values, which.min returns the first (like your example):
mins <- group_by(d, Crime.Type) %>% slice(which.min(Crime.Rate))
maxs <- group_by(d, Crime.Type) %>% slice(which.max(Crime.Rate))
ends <- group_by(d, Crime.Type) %>% filter(Year == max(Year))
quarts <- d %>%
  group_by(Crime.Type) %>%
  summarize(quart1 = quantile(Crime.Rate, 0.25),
            quart2 = quantile(Crime.Rate, 0.75)) %>%
  right_join(d)

ggplot(d, aes(x=Year, y=Crime.Rate)) + 
  facet_grid(Crime.Type ~ ., scales = "free_y") + 
  geom_ribbon(data = quarts, aes(ymin = quart1, ymax = quart2), fill = 'grey90') +
  geom_line(size=0.3) +
  geom_point(data = mins, col = 'blue') +
  geom_text(data = mins, aes(label = Crime.Rate), vjust = -1) +
  geom_point(data = maxs, col = 'red') +
  geom_text(data = maxs, aes(label = Crime.Rate), vjust = 2) +
  geom_text(data = ends, aes(label = Crime.Rate), hjust = 0) +
  geom_text(data = ends, aes(label = Crime.Type), hjust = 0, nudge_x = 5) +
  expand_limits(x = max(d$Year) + (0.25 * (max(d$Year) - min(d$Year)))) +
  scale_x_continuous(breaks = seq(1960, 2010, 10)) +
  scale_y_continuous(expand = c(0.1, 0)) +
  theme_tufte(base_size = 15) +
  theme(axis.title=element_blank(),
        axis.text.y = element_blank(), 
        axis.ticks = element_blank(),
        strip.text = element_blank())

ここに伝説は必要ないと思います。ほとんどの場合、いくつかの data.frames をマージすることでより簡潔にすることができますが、ここでは複数の geom 呼び出しが最も簡単なようです。

ここに画像の説明を入力

于 2016-02-16T15:12:54.880 に答える