About 194,000 results
Open links in new tab
  1. ggplot2 - Create Elegant Data Visualisations Using the Grammar …

    ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics. You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to …

  2. CRAN: Package ggplot2

    A system for 'declaratively' creating graphics, based on "The Grammar of Graphics". You provide the data, tell 'ggplot2' how to map variables to aesthetics, what graphical primitives to use, and …

  3. ggplot2作图最全教程(上) - 知乎

    有很多很多不同的几何图形 (称为geoms,因为每个函数通常都以geom_开头),默认情况下可以添加到ggplot中,扩展包甚至提供更多的几何图形。 让我们告诉ggplot2我们想使用哪种图形, …

  4. ggplot2入门指南 - GitHub Pages

    分面与布局 分面,就是分组绘图,根据定义的规则,将数据分为多个子集,每个子集按照统一的规则单独制图,排布在一个页面上。 ggplot2提供两种分面模式: facet_grid() 和 facet_wrap()。 …

  5. GitHub - tidyverse/ggplot2: An implementation of the Grammar …

    ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics. You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to …

  6. ggplot2 package - RDocumentation

    ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics. You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to …

  7. ggplot2: Elegant Graphics for Data Analysis (3e)

    This is the on-line version of work-in-progress 3rd edition of “ggplot2: elegant graphics for data analysis” published by Springer. You can learn what’s changed from the 2nd edition in the …

  8. Introduction to ggplot2

    ggplot2 is an R package for producing visualizations of data. Unlike many graphics packages, ggplot2 uses a conceptual framework based on the grammar of graphics. This allows you to …

  9. ggplot2 - Wikipedia

    In contrast to base R graphics, ggplot2 allows the user to add, remove or alter components in a plot at a high level of abstraction. [11] This abstraction comes at a cost, with ggplot2 being …

  10. R语言基础| 可视化初探(ggplot2) - 知乎

    通过ggplot2,你可以创建各种图表:包括但不限于散点图、线图、直方图、条形图和箱线图。 此外,ggplot2 提供了广泛的自定义选项,允许用户调整几乎图表的每个细节,以适应具体的展 …