예제 #1
0
파일: Utils.cs 프로젝트: ConorNeueda/NETA
    public static SpearmansRank CreateCorrelationsTable(spearmans_ranks table)
    {
        SpearmansRank ret = new SpearmansRank();
        ret.CorrelationID = table.correlation_id;
        ret.CorrelationName = table.correlation_name;
        ret.SpearmansRho = table.spearmans_rho;

        return ret;
    }
예제 #2
0
 public SpearmansRank(NetaDAL.spearmans_ranks myTable)
 {
     CorrelationID   = myTable.correlation_id;
     CorrelationName = myTable.correlation_name;
     SpearmansRho    = myTable.spearmans_rho;
 }