mgrastDendrograms {KbaseKit}R Documentation

Dendogram analysis

Description

This script will perform dendrogram analysis (x and y) of input data using the selected distance/dissimilarity metric and the selected clustering method.

Usage

mgrastDendrograms(file_in, file_out_column = "col_clust", file_out_row = "row_clust", dist_method = "euclidean", clust_method = "ward", produce_figures = FALSE, col_dendrogram_width = 950, col_dendrogram_height = 500, row_dendrogram_width = 950, row_dendrogram_height = 500, output_files_prefix = "my_dendrograms")

Arguments

file_in
file_out_column
file_out_row
dist_method
clust_method
produce_figures
col_dendrogram_width
col_dendrogram_height
row_dendrogram_width
row_dendrogram_height
output_files_prefix

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (file_in, file_out_column = "col_clust", file_out_row = "row_clust", 
    dist_method = "euclidean", clust_method = "ward", produce_figures = FALSE, 
    col_dendrogram_width = 950, col_dendrogram_height = 500, 
    row_dendrogram_width = 950, row_dendrogram_height = 500, 
    output_files_prefix = "my_dendrograms") 
{
    suppressPackageStartupMessages(library(ecodist))
  }

[Package KbaseKit version 0.9 Index]