コード例 #1
0
ファイル: DataTable.cs プロジェクト: prosa100/brightwire
        public IDataTable Normalise(DataTableNormalisation normalisationModel, Stream output = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationModel.Type, output, normalisationModel);

            Process(normaliser);
            return(normaliser.GetDataTable());
        }
コード例 #2
0
ファイル: DataTable.cs プロジェクト: prosa100/brightwire
        public IDataTable Normalise(NormalisationType normalisationType, Stream output = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType, output);

            Process(normaliser);
            return(normaliser.GetDataTable());
        }
コード例 #3
0
ファイル: DataTable.cs プロジェクト: lulzzz/brightwire
        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());
        }
コード例 #4
0
ファイル: DataTable.cs プロジェクト: prosa100/brightwire
        public DataTableNormalisation GetNormalisationModel(NormalisationType normalisationType)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType);

            return(normaliser.GetNormalisationModel());
        }
コード例 #5
0
ファイル: DataTable.cs プロジェクト: lulzzz/brightwire
        public DataTableNormalisation GetNormalisationModel(NormalisationType normalisationType, IEnumerable <int> columnIndices = null)
        {
            var normaliser = new DataTableNormaliser(this, normalisationType, null, columnIndices);

            return(normaliser.GetNormalisationModel());
        }