Class FactorProfile
- java.lang.Object
- 
- ubic.gemma.web.controller.visualization.FactorProfile
 
- 
 public class FactorProfile extends Object Represents data for displaying a factor (+ factor values) in a chart.- Author:
- paul
 
- 
- 
Constructor SummaryConstructors Constructor Description FactorProfile()FactorProfile(List<Double> values, boolean isContinuous)FactorProfile(ExperimentalFactor ef, LinkedHashMap<BioAssayValueObject,LinkedHashMap<ExperimentalFactor,Double>> layouts)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetIsContinuous()List<List<DoublePoint>>getPlots()voidsetIsContinuous(Boolean isContinuous)voidsetPlots(List<List<DoublePoint>> plots)StringtoString()
 
- 
- 
- 
Constructor Detail- 
FactorProfilepublic FactorProfile() 
 - 
FactorProfilepublic FactorProfile(ExperimentalFactor ef, LinkedHashMap<BioAssayValueObject,LinkedHashMap<ExperimentalFactor,Double>> layouts) - Parameters:
- ef- Factor to work on.
- layouts- The double values are either just dummy values to tell us the extent of each factor value; or for continuous measurements it is the actual measurement.
 
 
- 
 - 
Method Detail- 
getIsContinuouspublic Boolean getIsContinuous() - Returns:
- the isContinuous
 
 - 
setIsContinuouspublic void setIsContinuous(Boolean isContinuous) - Parameters:
- isContinuous- the isContinuous to set
 
 - 
getPlotspublic List<List<DoublePoint>> getPlots() - Returns:
- the plots
 
 - 
setPlotspublic void setPlots(List<List<DoublePoint>> plots) - Parameters:
- plots- the plots to set
 
 
- 
 
-