2

私は以下を持っていますdataframe

> View(AuthorsMM)

    Autor    #  Sentiment
1   Autor 1  33 J
2   Autor 2  33 J
3   Autor 3  22 K
4   Autor 4  18 L
5   Autor 5  16 L
6   Autor 6  15 K
7   Autor 7  15 L
8   Autor 8  15 K
9   Autor 9  15 K
10  Autor 10 14 K

パッケージReporteRsを使用して、この data.frameflextableを Powerpointに送信しています。

AuthorsMM_ft <- FlexTable( data = head(AuthorsMM,10), header.columns = TRUE )

次のテキスト プロパティを使用してセンチメント列を定義します。

AuthorsMM_ft[, 3] = textProperties( color = 'white', font.weight = 'bold', font.family = 'Wingdings', font.size = 12 )

これにより、列の内容に応じて、Powerpoint にさまざまな絵文字が表示されます (Wingdings の trueType のため)。

ただし、コンテンツに応じてテキストに異なる色(緑、黄、赤)を追加で適用したいと考えています。したがって:

  • if (Sentiment == "J") then textProperties( color = 'green' , font.weight = 'bold', font.family = 'Wingdings', font.size = 12 )

  • if (センチメント == "K") then textProperties( color = 'yellow' , font.weight = 'bold', font.family = 'Wingdings', font.size = 12 )

  • if (センチメント == "L") then textProperties( color = 'red' , font.weight = 'bold', font.family = 'Wingdings', font.size = 12 )

このパッケージを使用することは可能ですか?

4

1 に答える 1

3

はい、可能です。

このコードは、その方法を示しています。

library(ReporteRs)

# define the data frame - extracted with dput()
AuthorsMM <- structure(list(Autor = c("Autor 1", "Autor 2", "Autor 3", "Autor 4", 
                                      "Autor 5", "Autor 6", "Autor 7", "Autor 8", "Autor 9", "Autor 10"
), `#` = c(33L, 33L, 22L, 18L, 16L, 15L, 15L, 15L, 15L, 14L), 
Sentiment = c("J", "J", "K", "L", "L", "K", "L", "K", "K", 
              "K")), class = c("tbl_df", "tbl", "data.frame"), row.names = c(NA, 
                                                                             -10L), .Names = c("Autor", "#", "Sentiment"), spec = structure(list(
                                                                               cols = structure(list(Autor = structure(list(), class = c("collector_character", 
                                                                                                                                         "collector")), `#` = structure(list(), class = c("collector_integer", 
                                                                                                                                                                                          "collector")), Sentiment = structure(list(), class = c("collector_character", 
                                                                                                                                                                                                                                                 "collector"))), .Names = c("Autor", "#", "Sentiment")), default = structure(list(), class = c("collector_guess", 
                                                                                                                                                                                                                                                                                                                                               "collector"))), .Names = c("cols", "default"), class = "col_spec"))

# conditional formatting:
base_text_prop = textProperties(font.size = 12, 
                            color = "black",
                            font.weight = 'bold',
                            font.family = 'Wingdings')

myCellProps = cellProperties(padding = 5)

AuthorsMM_ft <- FlexTable(data = head(AuthorsMM,10), 
                      header.columns = TRUE,
                      body.text.props = base_text_prop)

AuthorsMM_ft[AuthorsMM$Sentiment == 'J',3] = chprop(base_text_prop, color = 'green')
AuthorsMM_ft[AuthorsMM$Sentiment == 'K',3] = chprop(base_text_prop, color = 'yellow')
AuthorsMM_ft[AuthorsMM$Sentiment == 'L',3] = chprop(base_text_prop, color = 'red')
AuthorsMM_ft

ここに画像の説明を入力

何らかの理由textPropertiesで、内での定義がFlexTable機能しませんでした。使っbackground.colorてみると形が変わったようです。

FlexTables でプロパティ条件付き書式を変更するその他の例。

于 2016-03-17T17:07:15.647 に答える