All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chen0040.glm.data.OutputDataColumn Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.chen0040.glm.data;


/**
 * Created by xschen on 5/5/2017.
 */
public class OutputDataColumn {
   private String columnName;
   private boolean categorical;

   public OutputDataColumn(){

   }

   public OutputDataColumn(String columnName, boolean categorical) {
      this.columnName = columnName;
      this.categorical = categorical;
   }

   public String getColumnName(){
      return columnName;
   }

   public boolean isCategorical(){
      return categorical;
   }


   public OutputDataColumn makeCopy() {
      return new OutputDataColumn(columnName, categorical);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy