Questions tagged «data-visualization»

数据可视化是对数据可视化表示的研究。地图和图表是最常见的数据可视化类型,但还有更多种类。

3
使用gganimate通过观察建立直方图观察?需要处理更大的数据集(〜n = 5000)
该赏金过期2天。这个问题的答案有资格获得+200声望奖励。 max正在寻找信誉良好的答案。 我想从正态分布中采样点,然后使用该gganimate包一个一个地构建一个点图,直到最后一帧显示完整的点图。 一个适用于约5,000-20,000点的较大数据集的解决方案至关重要。 这是我到目前为止的代码: library(gganimate) library(tidyverse) # Generate 100 normal data points, along an index for each sample samples <- rnorm(100) index <- seq(1:length(samples)) # Put data into a data frame df <- tibble(value=samples, index=index) df看起来像这样: > head(df) # A tibble: 6 x 2 value index <dbl> <int> 1 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.