はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ノーベル賞

『Create Elegant Data Visualisations Using the Grammar of Graphics』

  • 人気
  • 新着
  • すべて
  • Create Elegant Data Visualisations Using the Grammar of Graphics

    6 users

    ggplot2.tidyverse.org

    Overview 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 use, and it takes care of the details. # The easiest way to get ggplot2 is to install the whole tidyverse: install.packages("tidyverse") # Alternatively, install just ggplot2: install.packages("ggplot

    • テクノロジー
    • 2018/06/04 15:13
    • Data
    • Create Elegant Data Visualisations Using the Grammar of Graphics

      4 users

      ggplot2.tidyverse.org

      Overview 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 use, and it takes care of the details. # The easiest way to get ggplot2 is to install the whole tidyverse: install.packages("tidyverse") # Alternatively, install just ggplot2: install.packages("ggplot

      • テクノロジー
      • 2017/05/09 15:33
      • Complete themes — ggtheme

        3 users

        ggplot2.tidyverse.org

        These are complete themes which control all non-data display. Use theme() if you just need to tweak the display of an existing theme. theme_grey( base_size = 11, base_family = "", header_family = NULL, base_line_size = base_size/22, base_rect_size = base_size/22, ink = "black", paper = "white", accent = "#3366FF" ) theme_gray( base_size = 11, base_family = "", header_family = NULL, base_line_size

        • テクノロジー
        • 2017/03/13 06:12
        • Contours of a 2D density estimate — geom_density_2d

          3 users

          ggplot2.tidyverse.org

          Perform a 2D kernel density estimation using MASS::kde2d() and display the results with contours. This can be useful for dealing with overplotting. This is a 2D version of geom_density(). geom_density_2d() draws contour lines, and geom_density_2d_filled() draws filled contour bands. geom_density_2d( mapping = NULL, data = NULL, stat = "density_2d", position = "identity", ..., contour_var = "densit

          • テクノロジー
          • 2017/02/27 02:02
          • Smoothed conditional means — geom_smooth

            3 users

            ggplot2.tidyverse.org

            Aids the eye in seeing patterns in the presence of overplotting. geom_smooth() and stat_smooth() are effectively aliases: they both use the same arguments. Use stat_smooth() if you want to display the results with a non-standard geom. geom_smooth( mapping = NULL, data = NULL, stat = "smooth", position = "identity", ..., method = NULL, formula = NULL, se = TRUE, na.rm = FALSE, orientation = NA, sho

            • テクノロジー
            • 2016/10/17 15:46
            • Add components to a plot — add_gg

              3 users

              ggplot2.tidyverse.org

              Arguments e1 An object of class ggplot() or a theme(). e2 A plot component, as described below. What can you add? You can add any of the following types of objects: An aes() object replaces the default aesthetics. A layer created by a geom_ or stat_ function adds a new layer. A scale overrides the existing scale. A theme() modifies the current theme. A coord overrides the current coordinate system

              • テクノロジー
              • 2015/07/29 20:14
              • Legend guide — guide_legend

                3 users

                ggplot2.tidyverse.org

                Legend type guide shows key (i.e., geoms) mapped onto values. Legend guides for various scales are integrated if possible. guide_legend( title = waiver(), theme = NULL, position = NULL, direction = NULL, override.aes = list(), nrow = NULL, ncol = NULL, reverse = FALSE, order = 0, ... ) Arguments title A character string or expression indicating a title of guide. If NULL, the title is not shown. By

                • テクノロジー
                • 2014/11/03 21:23
                • Compute empirical cumulative distribution — stat_ecdf

                  4 users

                  ggplot2.tidyverse.org

                  The empirical cumulative distribution function (ECDF) provides an alternative visualisation of distribution. Compared to other visualisations that rely on density (like geom_histogram()), the ECDF doesn't require any tuning parameters and handles both continuous and categorical variables. The downside is that it requires more training to accurately interpret, and the underlying visual tasks are so

                  • テクノロジー
                  • 2014/02/10 16:24
                  • ggplot2
                  • Rectangles — geom_raster

                    5 users

                    ggplot2.tidyverse.org

                    geom_rect() and geom_tile() do the same thing, but are parameterised differently: geom_tile() uses the center of the tile and its size (x, y, width, height), while geom_rect() can use those or the locations of the corners (xmin, xmax, ymin and ymax). geom_raster() is a high performance special case for when all the tiles are the same size, and no pattern fills are applied. geom_raster( mapping = N

                    • テクノロジー
                    • 2013/11/05 19:15
                    • Position scales for continuous data (x & y) — scale_continuous

                      3 users

                      ggplot2.tidyverse.org

                      scale_x_continuous() and scale_y_continuous() are the default scales for continuous x and y aesthetics. There are three variants that set the transform argument for commonly used transformations: scale_*_log10(), scale_*_sqrt() and scale_*_reverse(). scale_x_continuous( name = waiver(), breaks = waiver(), minor_breaks = waiver(), n.breaks = NULL, labels = waiver(), limits = NULL, expand = waiver()

                      • テクノロジー
                      • 2013/10/24 18:43
                      • Modify components of a theme — theme

                        4 users

                        ggplot2.tidyverse.org

                        Themes are a powerful way to customize the non-data components of your plots: i.e. titles, labels, fonts, background, gridlines, and legends. Themes can be used to give plots a consistent customized look. Modify a single plot's theme using theme(); see theme_update() if you want modify the active theme, to affect all subsequent plots. Use the themes available in complete themes if you would like t

                        • テクノロジー
                        • 2013/01/19 17:40
                        • ggplot2
                        • 統計
                        • Text — geom_label

                          3 users

                          ggplot2.tidyverse.org

                          Text geoms are useful for labeling plots. They can be used by themselves as scatterplots or in combination with other geoms, for example, for labeling points or for annotating the height of bars. geom_text() adds only text to the plot. geom_label() draws a rectangle behind the text, making it easier to read. geom_label( mapping = NULL, data = NULL, stat = "identity", position = "nudge", ..., parse

                          • テクノロジー
                          • 2013/01/15 23:07
                          • Package index

                            6 users

                            ggplot2.tidyverse.org

                            A layer combines data, aesthetic mapping, a geom (geometric object), a stat (statistical transformation), and a position adjustment. Typically, you will create layers using a geom_ function, overriding the default position and stat if needed. layer_geoms Layer geometry display geom_abline() geom_hline() geom_vline() Reference lines: horizontal, vertical, and diagonal geom_bar() geom_col() stat_cou

                            • テクノロジー
                            • 2012/10/28 13:22
                            • R
                            • ggplot2
                            • reference
                            • Package index

                              27 users

                              ggplot2.tidyverse.org

                              A layer combines data, aesthetic mapping, a geom (geometric object), a stat (statistical transformation), and a position adjustment. Typically, you will create layers using a geom_ function, overriding the default position and stat if needed. layer_geoms Layer geometry display geom_abline() geom_hline() geom_vline() Reference lines: horizontal, vertical, and diagonal geom_bar() geom_col() stat_cou

                              • 世の中
                              • 2012/09/22 10:12
                              • ggplot2
                              • R
                              • グラフ

                              このページはまだ
                              ブックマークされていません

                              このページを最初にブックマークしてみませんか?

                              『Create Elegant Data Visualisations Using the Grammar of Graphics』の新着エントリーを見る

                              キーボードショートカット一覧

                              j次のブックマーク

                              k前のブックマーク

                              lあとで読む

                              eコメント一覧を開く

                              oページを開く

                              はてなブックマーク

                              • 総合
                              • 一般
                              • 世の中
                              • 政治と経済
                              • 暮らし
                              • 学び
                              • テクノロジー
                              • エンタメ
                              • アニメとゲーム
                              • おもしろ
                              • アプリ・拡張機能
                              • 開発ブログ
                              • ヘルプ
                              • お問い合わせ
                              • ガイドライン
                              • 利用規約
                              • プライバシーポリシー
                              • 利用者情報の外部送信について
                              • ガイドライン
                              • 利用規約
                              • プライバシーポリシー
                              • 利用者情報の外部送信について

                              公式Twitter

                              • 公式アカウント
                              • ホットエントリー

                              はてなのサービス

                              • はてなブログ
                              • はてなブログPro
                              • 人力検索はてな
                              • はてなブログ タグ
                              • はてなニュース
                              • ソレドコ
                              • App Storeからダウンロード
                              • Google Playで手に入れよう
                              Copyright © 2005-2025 Hatena. All Rights Reserved.
                              設定を変更しましたx