tabItem(tabName = "heatmapPlot",
fluidRow(
column(12,h3(strong("PCHeatmap Output:")),
column(3,
wellPanel(
h4("PCs to use:"),
numericInput("pcsToUse1", "PC", value = 1),
numericInput("pcsToUse2", "To", value = 6),
hr(),
numericInput("cellsToUse", "Number of cells to use:", value = 500)
),
wellPanel(
h4("Plot Download Options"),
numericInput("heatmapDownloadHeight", "Plot height (in cm):", value = 30),
numericInput("heatmapDownloadWidth", "Plot width (in cm):", value = 30),
radioButtons("heatmapDownloadAs", "Download File Type:", choices = list("PDF" = ".pdf", "SVG" = ".svg", "PNG" = ".png", "JPEG" = ".jpeg"), selected = ".pdf"),
downloadButton("downloadHeatmap", "Download Plot")
)
),
column(9,
column(12,
#p("Visualize cells and genes that define the PCA"),
#strong(textOutput("numVarGenesFound")),
withSpinner(plotOutput(outputId = "heatmapPlot", height = 700))
)
)
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.