plot_heat_map_tc {HDXBoxeR} | R Documentation |
Plots heat maps for time courses.
Description
Returns heat map on timecourses with raw data.
Usage
plot_heat_map_tc(
df,
replicates = 3,
mar_x = 3.5,
ranges = c(-Inf, seq(0, 100, by = 10), Inf)
)
Arguments
df |
output from function output_tcourse |
replicates |
number of replicates in sample. Default set to 3. |
mar_x |
margin x width. Default=3.5 |
ranges |
ranges for coloring scheme. Default set to c(seq(0, 100, by=10), Inf) |
Value
heat map for time courses
Examples
file_nm<-system.file("extdata", "All_results_table.csv", package = "HDXBoxeR")
a<- output_tc(file_nm)
plot_heat_map_tc(df=a, replicates=3, ranges=c(seq(0, 100, by=5), Inf))
plot_heat_map_tc(df=a)
[Package HDXBoxeR version 0.0.1 Index]