Esempio n. 1
0
        public IDataTable Normalise(DataTableNormalisation normalisationModel, Stream output = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationModel.Type, output, normalisationModel);

            Process(normaliser);
            return(normaliser.GetDataTable());
        }
Esempio n. 2
0
        public IDataTable Normalise(NormalisationType normalisationType, Stream output = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType, output);

            Process(normaliser);
            return(normaliser.GetDataTable());
        }
Esempio n. 3
0
        public IDataTable Normalise(NormalisationType normalisationType, Stream output = null, IEnumerable <int> columnIndices = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType, output, columnIndices);

            Process(normaliser);
            return(normaliser.GetDataTable());
        }
Esempio n. 4
0
        public DataTableNormalisation GetNormalisationModel(NormalisationType normalisationType)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType);

            return(normaliser.GetNormalisationModel());
        }
Esempio n. 5
0
        public DataTableNormalisation GetNormalisationModel(NormalisationType normalisationType, IEnumerable <int> columnIndices = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType, null, columnIndices);

            return(normaliser.GetNormalisationModel());
        }