├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── computeAggregates.R ├── computeBarchart.R ├── computeCorrelations.R ├── computeGraph.R ├── computeGraphClusters.R ├── computeHeatmap.R ├── computeHistogram.R ├── computeKmeans.R ├── computeLm.R ├── computePercentiles.R ├── computeSample.R ├── computeTfIdf.R ├── maps.R ├── misc.R ├── plotting.R ├── plottingKmeans.R ├── showData.R ├── showGraph.R ├── textParsers.R ├── toaster.R ├── tools.R ├── utils.R └── validateGraph.R ├── README.md ├── demo ├── 00Index ├── baseball-aggregate.R ├── baseball-barchart.R ├── baseball-boxplot.R ├── baseball-bubble.R ├── baseball-correlation.R ├── baseball-heatmap.R ├── baseball-histogram.R ├── baseball-kmeans.R ├── baseball-lm.R ├── baseball-maps.R ├── baseball-parallel.R ├── baseball-pyramid.R ├── baseball-sample.R ├── baseball-showData.R ├── baseball-summary.R └── dallas-text.R ├── man ├── computeAggregates.Rd ├── computeBarchart.Rd ├── computeCanopy.Rd ├── computeClusterSample.Rd ├── computeCorrelations.Rd ├── computeEgoGraph.Rd ├── computeGraph.Rd ├── computeGraphClusters.Rd ├── computeGraphClustersAsGraphs.Rd ├── computeGraphHistogram.Rd ├── computeGraphMetric.Rd ├── computeHeatmap.Rd ├── computeHistogram.Rd ├── computeKmeans.Rd ├── computeLm.Rd ├── computePercentiles.Rd ├── computeSample.Rd ├── computeSilhouette.Rd ├── computeTf.Rd ├── computeTfIdf.Rd ├── createBoxplot.Rd ├── createBubblechart.Rd ├── createCentroidPlot.Rd ├── createClusterPairsPlot.Rd ├── createClusterPlot.Rd ├── createHeatmap.Rd ├── createHistogram.Rd ├── createMap.Rd ├── createPopPyramid.Rd ├── createSilhouetteProfile.Rd ├── createSlopegraph.Rd ├── createWordcloud.Rd ├── getArbitraryPrecisionTypes.Rd ├── getCharacterColumns.Rd ├── getCharacterTypes.Rd ├── getDiscretePaletteFactory.Rd ├── getFloatingPointTypes.Rd ├── getGradientPaletteFactory.Rd ├── getIntegerTypes.Rd ├── getMatchingColumns.Rd ├── getNullCounts.Rd ├── getNumericColumns.Rd ├── getNumericTypes.Rd ├── getTableCounts.Rd ├── getTableSummary.Rd ├── getTemporalColumns.Rd ├── getTemporalTypes.Rd ├── getWindowFunction.Rd ├── isTable.Rd ├── makeFromClause.Rd ├── makeTempTableName.Rd ├── nGram.Rd ├── showData.Rd ├── showGraph.Rd ├── theme_empty.Rd ├── toaGraph.Rd ├── toa_dep.Rd ├── toaster.Rd ├── token.Rd ├── validateGraph.Rd └── viewTableSummary.Rd ├── tests ├── testthat.R └── testthat │ ├── _battingInfo.dat │ ├── _pitchingInfo.dat │ ├── _startEndTestInfo.dat │ ├── helper-tests.R │ ├── test-computeAggregates.R │ ├── test-computeBarchart.R │ ├── test-computeCanopy.R │ ├── test-computeCorrelations.R │ ├── test-computeEgoGraph.R │ ├── test-computeGraph.R │ ├── test-computeGraphClusters.R │ ├── test-computeGraphHistogram.R │ ├── test-computeGraphMetric.R │ ├── test-computeHeatmap.R │ ├── test-computeHistogram.R │ ├── test-computeKmeans.R │ ├── test-computeLm.R │ ├── test-computePercentiles.R │ ├── test-computeSample.R │ ├── test-computeTf.R │ ├── test-computeTfIdf.R │ ├── test-createBoxplot.R │ ├── test-createClusterPlots.R │ ├── test-createMap.R │ ├── test-createPopPyramid.R │ ├── test-misc.R │ ├── test-showData.R │ ├── test-showGraph.R │ ├── test-utils.R │ └── test-validateGraph.R └── toaster.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/NEWS -------------------------------------------------------------------------------- /R/computeAggregates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeAggregates.R -------------------------------------------------------------------------------- /R/computeBarchart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeBarchart.R -------------------------------------------------------------------------------- /R/computeCorrelations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeCorrelations.R -------------------------------------------------------------------------------- /R/computeGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeGraph.R -------------------------------------------------------------------------------- /R/computeGraphClusters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeGraphClusters.R -------------------------------------------------------------------------------- /R/computeHeatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeHeatmap.R -------------------------------------------------------------------------------- /R/computeHistogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeHistogram.R -------------------------------------------------------------------------------- /R/computeKmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeKmeans.R -------------------------------------------------------------------------------- /R/computeLm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeLm.R -------------------------------------------------------------------------------- /R/computePercentiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computePercentiles.R -------------------------------------------------------------------------------- /R/computeSample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeSample.R -------------------------------------------------------------------------------- /R/computeTfIdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/computeTfIdf.R -------------------------------------------------------------------------------- /R/maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/maps.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/plotting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/plotting.R -------------------------------------------------------------------------------- /R/plottingKmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/plottingKmeans.R -------------------------------------------------------------------------------- /R/showData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/showData.R -------------------------------------------------------------------------------- /R/showGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/showGraph.R -------------------------------------------------------------------------------- /R/textParsers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/textParsers.R -------------------------------------------------------------------------------- /R/toaster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/toaster.R -------------------------------------------------------------------------------- /R/tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/tools.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/validateGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/R/validateGraph.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/README.md -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/baseball-aggregate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-aggregate.R -------------------------------------------------------------------------------- /demo/baseball-barchart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-barchart.R -------------------------------------------------------------------------------- /demo/baseball-boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-boxplot.R -------------------------------------------------------------------------------- /demo/baseball-bubble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-bubble.R -------------------------------------------------------------------------------- /demo/baseball-correlation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-correlation.R -------------------------------------------------------------------------------- /demo/baseball-heatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-heatmap.R -------------------------------------------------------------------------------- /demo/baseball-histogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-histogram.R -------------------------------------------------------------------------------- /demo/baseball-kmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-kmeans.R -------------------------------------------------------------------------------- /demo/baseball-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-lm.R -------------------------------------------------------------------------------- /demo/baseball-maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-maps.R -------------------------------------------------------------------------------- /demo/baseball-parallel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-parallel.R -------------------------------------------------------------------------------- /demo/baseball-pyramid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-pyramid.R -------------------------------------------------------------------------------- /demo/baseball-sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-sample.R -------------------------------------------------------------------------------- /demo/baseball-showData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-showData.R -------------------------------------------------------------------------------- /demo/baseball-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/baseball-summary.R -------------------------------------------------------------------------------- /demo/dallas-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/demo/dallas-text.R -------------------------------------------------------------------------------- /man/computeAggregates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeAggregates.Rd -------------------------------------------------------------------------------- /man/computeBarchart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeBarchart.Rd -------------------------------------------------------------------------------- /man/computeCanopy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeCanopy.Rd -------------------------------------------------------------------------------- /man/computeClusterSample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeClusterSample.Rd -------------------------------------------------------------------------------- /man/computeCorrelations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeCorrelations.Rd -------------------------------------------------------------------------------- /man/computeEgoGraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeEgoGraph.Rd -------------------------------------------------------------------------------- /man/computeGraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeGraph.Rd -------------------------------------------------------------------------------- /man/computeGraphClusters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeGraphClusters.Rd -------------------------------------------------------------------------------- /man/computeGraphClustersAsGraphs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeGraphClustersAsGraphs.Rd -------------------------------------------------------------------------------- /man/computeGraphHistogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeGraphHistogram.Rd -------------------------------------------------------------------------------- /man/computeGraphMetric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeGraphMetric.Rd -------------------------------------------------------------------------------- /man/computeHeatmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeHeatmap.Rd -------------------------------------------------------------------------------- /man/computeHistogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeHistogram.Rd -------------------------------------------------------------------------------- /man/computeKmeans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeKmeans.Rd -------------------------------------------------------------------------------- /man/computeLm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeLm.Rd -------------------------------------------------------------------------------- /man/computePercentiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computePercentiles.Rd -------------------------------------------------------------------------------- /man/computeSample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeSample.Rd -------------------------------------------------------------------------------- /man/computeSilhouette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeSilhouette.Rd -------------------------------------------------------------------------------- /man/computeTf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeTf.Rd -------------------------------------------------------------------------------- /man/computeTfIdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/computeTfIdf.Rd -------------------------------------------------------------------------------- /man/createBoxplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createBoxplot.Rd -------------------------------------------------------------------------------- /man/createBubblechart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createBubblechart.Rd -------------------------------------------------------------------------------- /man/createCentroidPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createCentroidPlot.Rd -------------------------------------------------------------------------------- /man/createClusterPairsPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createClusterPairsPlot.Rd -------------------------------------------------------------------------------- /man/createClusterPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createClusterPlot.Rd -------------------------------------------------------------------------------- /man/createHeatmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createHeatmap.Rd -------------------------------------------------------------------------------- /man/createHistogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createHistogram.Rd -------------------------------------------------------------------------------- /man/createMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createMap.Rd -------------------------------------------------------------------------------- /man/createPopPyramid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createPopPyramid.Rd -------------------------------------------------------------------------------- /man/createSilhouetteProfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createSilhouetteProfile.Rd -------------------------------------------------------------------------------- /man/createSlopegraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createSlopegraph.Rd -------------------------------------------------------------------------------- /man/createWordcloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/createWordcloud.Rd -------------------------------------------------------------------------------- /man/getArbitraryPrecisionTypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getArbitraryPrecisionTypes.Rd -------------------------------------------------------------------------------- /man/getCharacterColumns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getCharacterColumns.Rd -------------------------------------------------------------------------------- /man/getCharacterTypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getCharacterTypes.Rd -------------------------------------------------------------------------------- /man/getDiscretePaletteFactory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getDiscretePaletteFactory.Rd -------------------------------------------------------------------------------- /man/getFloatingPointTypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getFloatingPointTypes.Rd -------------------------------------------------------------------------------- /man/getGradientPaletteFactory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getGradientPaletteFactory.Rd -------------------------------------------------------------------------------- /man/getIntegerTypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getIntegerTypes.Rd -------------------------------------------------------------------------------- /man/getMatchingColumns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getMatchingColumns.Rd -------------------------------------------------------------------------------- /man/getNullCounts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getNullCounts.Rd -------------------------------------------------------------------------------- /man/getNumericColumns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getNumericColumns.Rd -------------------------------------------------------------------------------- /man/getNumericTypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getNumericTypes.Rd -------------------------------------------------------------------------------- /man/getTableCounts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getTableCounts.Rd -------------------------------------------------------------------------------- /man/getTableSummary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getTableSummary.Rd -------------------------------------------------------------------------------- /man/getTemporalColumns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getTemporalColumns.Rd -------------------------------------------------------------------------------- /man/getTemporalTypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getTemporalTypes.Rd -------------------------------------------------------------------------------- /man/getWindowFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/getWindowFunction.Rd -------------------------------------------------------------------------------- /man/isTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/isTable.Rd -------------------------------------------------------------------------------- /man/makeFromClause.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/makeFromClause.Rd -------------------------------------------------------------------------------- /man/makeTempTableName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/makeTempTableName.Rd -------------------------------------------------------------------------------- /man/nGram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/nGram.Rd -------------------------------------------------------------------------------- /man/showData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/showData.Rd -------------------------------------------------------------------------------- /man/showGraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/showGraph.Rd -------------------------------------------------------------------------------- /man/theme_empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/theme_empty.Rd -------------------------------------------------------------------------------- /man/toaGraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/toaGraph.Rd -------------------------------------------------------------------------------- /man/toa_dep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/toa_dep.Rd -------------------------------------------------------------------------------- /man/toaster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/toaster.Rd -------------------------------------------------------------------------------- /man/token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/token.Rd -------------------------------------------------------------------------------- /man/validateGraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/validateGraph.Rd -------------------------------------------------------------------------------- /man/viewTableSummary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/man/viewTableSummary.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_battingInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/_battingInfo.dat -------------------------------------------------------------------------------- /tests/testthat/_pitchingInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/_pitchingInfo.dat -------------------------------------------------------------------------------- /tests/testthat/_startEndTestInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/_startEndTestInfo.dat -------------------------------------------------------------------------------- /tests/testthat/helper-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/helper-tests.R -------------------------------------------------------------------------------- /tests/testthat/test-computeAggregates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeAggregates.R -------------------------------------------------------------------------------- /tests/testthat/test-computeBarchart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeBarchart.R -------------------------------------------------------------------------------- /tests/testthat/test-computeCanopy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeCanopy.R -------------------------------------------------------------------------------- /tests/testthat/test-computeCorrelations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeCorrelations.R -------------------------------------------------------------------------------- /tests/testthat/test-computeEgoGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeEgoGraph.R -------------------------------------------------------------------------------- /tests/testthat/test-computeGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeGraph.R -------------------------------------------------------------------------------- /tests/testthat/test-computeGraphClusters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeGraphClusters.R -------------------------------------------------------------------------------- /tests/testthat/test-computeGraphHistogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeGraphHistogram.R -------------------------------------------------------------------------------- /tests/testthat/test-computeGraphMetric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeGraphMetric.R -------------------------------------------------------------------------------- /tests/testthat/test-computeHeatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeHeatmap.R -------------------------------------------------------------------------------- /tests/testthat/test-computeHistogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeHistogram.R -------------------------------------------------------------------------------- /tests/testthat/test-computeKmeans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeKmeans.R -------------------------------------------------------------------------------- /tests/testthat/test-computeLm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeLm.R -------------------------------------------------------------------------------- /tests/testthat/test-computePercentiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computePercentiles.R -------------------------------------------------------------------------------- /tests/testthat/test-computeSample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeSample.R -------------------------------------------------------------------------------- /tests/testthat/test-computeTf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeTf.R -------------------------------------------------------------------------------- /tests/testthat/test-computeTfIdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-computeTfIdf.R -------------------------------------------------------------------------------- /tests/testthat/test-createBoxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-createBoxplot.R -------------------------------------------------------------------------------- /tests/testthat/test-createClusterPlots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-createClusterPlots.R -------------------------------------------------------------------------------- /tests/testthat/test-createMap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-createMap.R -------------------------------------------------------------------------------- /tests/testthat/test-createPopPyramid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-createPopPyramid.R -------------------------------------------------------------------------------- /tests/testthat/test-misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-misc.R -------------------------------------------------------------------------------- /tests/testthat/test-showData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-showData.R -------------------------------------------------------------------------------- /tests/testthat/test-showGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-showGraph.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-validateGraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/tests/testthat/test-validateGraph.R -------------------------------------------------------------------------------- /toaster.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teradata-aster-field/toaster/HEAD/toaster.Rproj --------------------------------------------------------------------------------