R/ReadFromFile3D.R

ReadFromFile3D <- function (input) 
{
    vector = try(read.table(input, header = FALSE, dec = ".", 
        ))
    if (class(vector) == "try-error") {
        print("Error in file!")
        return(0)
    }
    return(vector)
}

Try the VecStatGraphs3D package in your browser

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

VecStatGraphs3D documentation built on May 1, 2019, 8:03 p.m.