R/meshRows_norm_hda.R

Defines functions meshRows_norm_hda

meshRows_norm_hda <-
function(df1, df2) {
    junk <- meshRows_hda(df1, df2);
    Df1 <- junk[[1]];Df2 <- junk[[2]];
    df.mat1 <- as.matrix(Df1[-(c(1,2,3))][-1,]);
    Df1 <- mat2pcl(mat = df.mat1, tag = Df1[(c(1,2,3))]);
    df.mat2 <- as.matrix(Df2[-(c(1,2,3))][-1,]);
    Df2 <- mat2pcl(mat = df.mat2, tag = Df2[(c(1,2,3))]);
    return(list(Df1,Df2))
}

Try the TTMap package in your browser

Any scripts or data that you put into this service are public.

TTMap documentation built on Nov. 8, 2020, 7:30 p.m.