add3c_y2 | R Documentation |
This function adds 3 charts/table/other objects to a PowerPoint slide. The charts are automatically added to the last slide of the PP object in R. For this function to work, you need a powerpoint object saved into R called "doc"
add3c_y2(name, position, label_first_only = FALSE)
name |
The name of the chart/table/other object to be added to a new PowerPoint slide. |
position |
Position options: "left"; "center"; "right"; "bottomright"; "topright". The chart layout can either be left-center-right OR left-topright-bottomright. |
label_first_only |
DEFAULT = FALSE; Set to TRUE if for a series of left-to-right charts where only the first chart has axis labels. Changing this setting to T in this case will slightly adjut positioning for equally sized graphs |
## Not run:
# First create a chart that you can add into a powerpoint object
frequencies <- mtcars %>%
y2clerk::freqs(carb) %>%
orderlabel::order_label(inherent_order_label = TRUE)
color_settings <- list('blue')
text_settings<- list('result' = officer::fp_text(font.size = 20))
chart_name <- y2artisan::ms_single_y2()
# Then before adding additional slides, charts, or tables onto a powerpoint,
# you must first read a PowerPoint into R
doc <- read_pptx('~/Y2 Analytics Dropbox/Y2 Analytics Team Folder/Projects/
Qualtrics/2021 Template and Resources/Template for mscharts.pptx')
# Now start adding in your charts
doc <- add1s_y2()
doc <- add3c_y2(chart_name, 'left')
doc <- add3c_y2(chart_name, 'center')
doc <- add3c_y2(chart_name, 'right')
doc <- add1s_y2()
doc <- add3c_y2(chart_name, 'topright')
doc <- add3c_y2(chart_name, 'bottomright')
doc <- add3c_y2(chart_name, 'left')
print(doc, '~/Desktop/test.pptx')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.