| set_gamma_colors | R Documentation | 
Based on the inputs, create the set of colors to be used in the time series of the fitted gamma (topic proportion) values.
set_gamma_colors(x, cols = NULL, option = "D", alpha = 1)
| x | Object of class  | 
| cols | Colors to be used to plot the time series of fitted topic proportions. | 
| option | A  | 
| alpha | Numeric value [0,1] that indicates the transparency of the 
colors used. Supported only on some devices, see 
 | 
Vector of character hex codes indicating colors to use.
  data(rodents)
  document_term_table <- rodents$document_term_table
  document_covariate_table <- rodents$document_covariate_table
  LDA_models <- LDA_set(document_term_table, topics = 2)[[1]]
  data <- document_covariate_table
  data$gamma <- LDA_models@gamma
  weights <- document_weights(document_term_table)
  TSmod <- TS(data, gamma ~ 1, nchangepoints = 1, "newmoon", weights)
  set_gamma_colors(TSmod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.