├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── check-full.yaml ├── .gitignore ├── AutoPlots.Rproj ├── AutoPlots_1.0.0.tar.gz ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── AccessoryFunctions.R ├── GlobalVariables.R ├── Imports.R ├── PlotFunctions.R ├── PlotFunctions_NEW.R └── revised_echarts4r_functions.R ├── README.md ├── cran-comments.md ├── inst ├── AreaPlot.PNG ├── AreaPlot_grid.PNG ├── BarPlot.PNG ├── BarPlot3D.PNG ├── BarPlot_grid.PNG ├── BoxPlot.PNG ├── BoxPlot_grid.PNG ├── CopulaPlot.PNG ├── CopulaPlot_grid.PNG ├── CorrelogramPlot.PNG ├── CorrelogramPlot_grid.PNG ├── Density.PNG ├── Density_grid.PNG ├── DonutPlot.PNG ├── DonutPlot_grid.PNG ├── Heatmap.PNG ├── Heatmap_grid.PNG ├── Histogram.PNG ├── Histogram_grid.PNG ├── LinePlot.PNG ├── LinePlot_grid.PNG ├── Logo2.PNG ├── ParallelPlot.PNG ├── ParallelPlot_grid.PNG ├── Pie.PNG ├── Pie_grid.PNG ├── Radar.PNG ├── Radar_grid.PNG ├── RiverPlot.PNG ├── RiverPlot_grid.PNG ├── RosetypePlot.PNG ├── RosetypePlot_grid.PNG ├── ScatterPlot.PNG ├── ScatterPlot_grid.PNG ├── StackedBarPlot.PNG ├── StepPlot.PNG ├── StepPlot_grid.PNG └── WORDLIST └── man ├── ACF.Rd ├── Area.Rd ├── Bar.Rd ├── BarPlot3D.Rd ├── BinaryMetricsPlot.Rd ├── Box.Rd ├── Calibration.Box.Rd ├── Calibration.Line.Rd ├── ConfusionMatrix.Rd ├── Copula.Rd ├── Copula3D.Rd ├── CorrMatrix.Rd ├── Density.Rd ├── Donut.Rd ├── FakeDataGenerator.Rd ├── Gains.Rd ├── HeatMap.Rd ├── Histogram.Rd ├── Lift.Rd ├── Line.Rd ├── PACF.Rd ├── Parallel.Rd ├── PartialDependence.Box.Rd ├── PartialDependence.HeatMap.Rd ├── PartialDependence.Line.Rd ├── Pie.Rd ├── Plot.ACF.Rd ├── Plot.Area.Rd ├── Plot.Bar.Rd ├── Plot.BarPlot3D.Rd ├── Plot.BinaryMetrics.Rd ├── Plot.Box.Rd ├── Plot.Calibration.Box.Rd ├── Plot.Calibration.Line.Rd ├── Plot.ConfusionMatrix.Rd ├── Plot.Copula.Rd ├── Plot.Copula3D.Rd ├── Plot.CorrMatrix.Rd ├── Plot.Density.Rd ├── Plot.Donut.Rd ├── Plot.Gains.Rd ├── Plot.HeatMap.Rd ├── Plot.Histogram.Rd ├── Plot.Lift.Rd ├── Plot.Line.Rd ├── Plot.PACF.Rd ├── Plot.Parallel.Rd ├── Plot.PartialDependence.Box.Rd ├── Plot.PartialDependence.HeatMap.Rd ├── Plot.PartialDependence.Line.Rd ├── Plot.Pie.Rd ├── Plot.ProbabilityPlot.Rd ├── Plot.ROC.Rd ├── Plot.Radar.Rd ├── Plot.Residuals.Histogram.Rd ├── Plot.Residuals.Scatter.Rd ├── Plot.River.Rd ├── Plot.Rosetype.Rd ├── Plot.Scatter.Rd ├── Plot.Scatter3D.Rd ├── Plot.ShapImportance.Rd ├── Plot.StackedBar.Rd ├── Plot.StandardPlots.Rd ├── Plot.Step.Rd ├── Plot.VariableImportance.Rd ├── Plot.WordCloud.Rd ├── Plot.prROC.Rd ├── Plots.ModelEvaluation.Rd ├── ProbabilityPlot.Rd ├── ROC.Rd ├── Radar.Rd ├── Residuals.Histogram.Rd ├── Residuals.Scatter.Rd ├── River.Rd ├── Rosetype.Rd ├── Scatter.Rd ├── Scatter3D.Rd ├── ShapImportance.Rd ├── StackedBar.Rd ├── Step.Rd ├── VariableImportance.Rd ├── WordCloud.Rd ├── display_plots_grid.Rd ├── e_area_full.Rd ├── e_bar_full.Rd ├── e_boxplot_full.Rd ├── e_density_full.Rd ├── e_heatmap_full.Rd ├── e_legend_full.Rd ├── e_parallel_full.Rd ├── e_title_full.Rd ├── e_toolbox_full.Rd ├── e_tooltip_full.Rd ├── e_visual_map_full.Rd ├── e_x_axis_full.Rd └── e_y_axis_full.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/.github/workflows/check-full.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoPlots.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/AutoPlots.Rproj -------------------------------------------------------------------------------- /AutoPlots_1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/AutoPlots_1.0.0.tar.gz -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/AccessoryFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/R/AccessoryFunctions.R -------------------------------------------------------------------------------- /R/GlobalVariables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/R/GlobalVariables.R -------------------------------------------------------------------------------- /R/Imports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/R/Imports.R -------------------------------------------------------------------------------- /R/PlotFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/R/PlotFunctions.R -------------------------------------------------------------------------------- /R/PlotFunctions_NEW.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/R/PlotFunctions_NEW.R -------------------------------------------------------------------------------- /R/revised_echarts4r_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/R/revised_echarts4r_functions.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/AreaPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/AreaPlot.PNG -------------------------------------------------------------------------------- /inst/AreaPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/AreaPlot_grid.PNG -------------------------------------------------------------------------------- /inst/BarPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/BarPlot.PNG -------------------------------------------------------------------------------- /inst/BarPlot3D.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/BarPlot3D.PNG -------------------------------------------------------------------------------- /inst/BarPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/BarPlot_grid.PNG -------------------------------------------------------------------------------- /inst/BoxPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/BoxPlot.PNG -------------------------------------------------------------------------------- /inst/BoxPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/BoxPlot_grid.PNG -------------------------------------------------------------------------------- /inst/CopulaPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/CopulaPlot.PNG -------------------------------------------------------------------------------- /inst/CopulaPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/CopulaPlot_grid.PNG -------------------------------------------------------------------------------- /inst/CorrelogramPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/CorrelogramPlot.PNG -------------------------------------------------------------------------------- /inst/CorrelogramPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/CorrelogramPlot_grid.PNG -------------------------------------------------------------------------------- /inst/Density.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Density.PNG -------------------------------------------------------------------------------- /inst/Density_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Density_grid.PNG -------------------------------------------------------------------------------- /inst/DonutPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/DonutPlot.PNG -------------------------------------------------------------------------------- /inst/DonutPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/DonutPlot_grid.PNG -------------------------------------------------------------------------------- /inst/Heatmap.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Heatmap.PNG -------------------------------------------------------------------------------- /inst/Heatmap_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Heatmap_grid.PNG -------------------------------------------------------------------------------- /inst/Histogram.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Histogram.PNG -------------------------------------------------------------------------------- /inst/Histogram_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Histogram_grid.PNG -------------------------------------------------------------------------------- /inst/LinePlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/LinePlot.PNG -------------------------------------------------------------------------------- /inst/LinePlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/LinePlot_grid.PNG -------------------------------------------------------------------------------- /inst/Logo2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Logo2.PNG -------------------------------------------------------------------------------- /inst/ParallelPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/ParallelPlot.PNG -------------------------------------------------------------------------------- /inst/ParallelPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/ParallelPlot_grid.PNG -------------------------------------------------------------------------------- /inst/Pie.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Pie.PNG -------------------------------------------------------------------------------- /inst/Pie_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Pie_grid.PNG -------------------------------------------------------------------------------- /inst/Radar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Radar.PNG -------------------------------------------------------------------------------- /inst/Radar_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/Radar_grid.PNG -------------------------------------------------------------------------------- /inst/RiverPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/RiverPlot.PNG -------------------------------------------------------------------------------- /inst/RiverPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/RiverPlot_grid.PNG -------------------------------------------------------------------------------- /inst/RosetypePlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/RosetypePlot.PNG -------------------------------------------------------------------------------- /inst/RosetypePlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/RosetypePlot_grid.PNG -------------------------------------------------------------------------------- /inst/ScatterPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/ScatterPlot.PNG -------------------------------------------------------------------------------- /inst/ScatterPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/ScatterPlot_grid.PNG -------------------------------------------------------------------------------- /inst/StackedBarPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/StackedBarPlot.PNG -------------------------------------------------------------------------------- /inst/StepPlot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/StepPlot.PNG -------------------------------------------------------------------------------- /inst/StepPlot_grid.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/StepPlot_grid.PNG -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/ACF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/ACF.Rd -------------------------------------------------------------------------------- /man/Area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Area.Rd -------------------------------------------------------------------------------- /man/Bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Bar.Rd -------------------------------------------------------------------------------- /man/BarPlot3D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/BarPlot3D.Rd -------------------------------------------------------------------------------- /man/BinaryMetricsPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/BinaryMetricsPlot.Rd -------------------------------------------------------------------------------- /man/Box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Box.Rd -------------------------------------------------------------------------------- /man/Calibration.Box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Calibration.Box.Rd -------------------------------------------------------------------------------- /man/Calibration.Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Calibration.Line.Rd -------------------------------------------------------------------------------- /man/ConfusionMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/ConfusionMatrix.Rd -------------------------------------------------------------------------------- /man/Copula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Copula.Rd -------------------------------------------------------------------------------- /man/Copula3D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Copula3D.Rd -------------------------------------------------------------------------------- /man/CorrMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/CorrMatrix.Rd -------------------------------------------------------------------------------- /man/Density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Density.Rd -------------------------------------------------------------------------------- /man/Donut.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Donut.Rd -------------------------------------------------------------------------------- /man/FakeDataGenerator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/FakeDataGenerator.Rd -------------------------------------------------------------------------------- /man/Gains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Gains.Rd -------------------------------------------------------------------------------- /man/HeatMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/HeatMap.Rd -------------------------------------------------------------------------------- /man/Histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Histogram.Rd -------------------------------------------------------------------------------- /man/Lift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Lift.Rd -------------------------------------------------------------------------------- /man/Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Line.Rd -------------------------------------------------------------------------------- /man/PACF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/PACF.Rd -------------------------------------------------------------------------------- /man/Parallel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Parallel.Rd -------------------------------------------------------------------------------- /man/PartialDependence.Box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/PartialDependence.Box.Rd -------------------------------------------------------------------------------- /man/PartialDependence.HeatMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/PartialDependence.HeatMap.Rd -------------------------------------------------------------------------------- /man/PartialDependence.Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/PartialDependence.Line.Rd -------------------------------------------------------------------------------- /man/Pie.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Pie.Rd -------------------------------------------------------------------------------- /man/Plot.ACF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.ACF.Rd -------------------------------------------------------------------------------- /man/Plot.Area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Area.Rd -------------------------------------------------------------------------------- /man/Plot.Bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Bar.Rd -------------------------------------------------------------------------------- /man/Plot.BarPlot3D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.BarPlot3D.Rd -------------------------------------------------------------------------------- /man/Plot.BinaryMetrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.BinaryMetrics.Rd -------------------------------------------------------------------------------- /man/Plot.Box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Box.Rd -------------------------------------------------------------------------------- /man/Plot.Calibration.Box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Calibration.Box.Rd -------------------------------------------------------------------------------- /man/Plot.Calibration.Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Calibration.Line.Rd -------------------------------------------------------------------------------- /man/Plot.ConfusionMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.ConfusionMatrix.Rd -------------------------------------------------------------------------------- /man/Plot.Copula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Copula.Rd -------------------------------------------------------------------------------- /man/Plot.Copula3D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Copula3D.Rd -------------------------------------------------------------------------------- /man/Plot.CorrMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.CorrMatrix.Rd -------------------------------------------------------------------------------- /man/Plot.Density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Density.Rd -------------------------------------------------------------------------------- /man/Plot.Donut.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Donut.Rd -------------------------------------------------------------------------------- /man/Plot.Gains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Gains.Rd -------------------------------------------------------------------------------- /man/Plot.HeatMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.HeatMap.Rd -------------------------------------------------------------------------------- /man/Plot.Histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Histogram.Rd -------------------------------------------------------------------------------- /man/Plot.Lift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Lift.Rd -------------------------------------------------------------------------------- /man/Plot.Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Line.Rd -------------------------------------------------------------------------------- /man/Plot.PACF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.PACF.Rd -------------------------------------------------------------------------------- /man/Plot.Parallel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Parallel.Rd -------------------------------------------------------------------------------- /man/Plot.PartialDependence.Box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.PartialDependence.Box.Rd -------------------------------------------------------------------------------- /man/Plot.PartialDependence.HeatMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.PartialDependence.HeatMap.Rd -------------------------------------------------------------------------------- /man/Plot.PartialDependence.Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.PartialDependence.Line.Rd -------------------------------------------------------------------------------- /man/Plot.Pie.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Pie.Rd -------------------------------------------------------------------------------- /man/Plot.ProbabilityPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.ProbabilityPlot.Rd -------------------------------------------------------------------------------- /man/Plot.ROC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.ROC.Rd -------------------------------------------------------------------------------- /man/Plot.Radar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Radar.Rd -------------------------------------------------------------------------------- /man/Plot.Residuals.Histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Residuals.Histogram.Rd -------------------------------------------------------------------------------- /man/Plot.Residuals.Scatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Residuals.Scatter.Rd -------------------------------------------------------------------------------- /man/Plot.River.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.River.Rd -------------------------------------------------------------------------------- /man/Plot.Rosetype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Rosetype.Rd -------------------------------------------------------------------------------- /man/Plot.Scatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Scatter.Rd -------------------------------------------------------------------------------- /man/Plot.Scatter3D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Scatter3D.Rd -------------------------------------------------------------------------------- /man/Plot.ShapImportance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.ShapImportance.Rd -------------------------------------------------------------------------------- /man/Plot.StackedBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.StackedBar.Rd -------------------------------------------------------------------------------- /man/Plot.StandardPlots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.StandardPlots.Rd -------------------------------------------------------------------------------- /man/Plot.Step.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.Step.Rd -------------------------------------------------------------------------------- /man/Plot.VariableImportance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.VariableImportance.Rd -------------------------------------------------------------------------------- /man/Plot.WordCloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.WordCloud.Rd -------------------------------------------------------------------------------- /man/Plot.prROC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plot.prROC.Rd -------------------------------------------------------------------------------- /man/Plots.ModelEvaluation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Plots.ModelEvaluation.Rd -------------------------------------------------------------------------------- /man/ProbabilityPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/ProbabilityPlot.Rd -------------------------------------------------------------------------------- /man/ROC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/ROC.Rd -------------------------------------------------------------------------------- /man/Radar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Radar.Rd -------------------------------------------------------------------------------- /man/Residuals.Histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Residuals.Histogram.Rd -------------------------------------------------------------------------------- /man/Residuals.Scatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Residuals.Scatter.Rd -------------------------------------------------------------------------------- /man/River.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/River.Rd -------------------------------------------------------------------------------- /man/Rosetype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Rosetype.Rd -------------------------------------------------------------------------------- /man/Scatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Scatter.Rd -------------------------------------------------------------------------------- /man/Scatter3D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Scatter3D.Rd -------------------------------------------------------------------------------- /man/ShapImportance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/ShapImportance.Rd -------------------------------------------------------------------------------- /man/StackedBar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/StackedBar.Rd -------------------------------------------------------------------------------- /man/Step.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/Step.Rd -------------------------------------------------------------------------------- /man/VariableImportance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/VariableImportance.Rd -------------------------------------------------------------------------------- /man/WordCloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/WordCloud.Rd -------------------------------------------------------------------------------- /man/display_plots_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/display_plots_grid.Rd -------------------------------------------------------------------------------- /man/e_area_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_area_full.Rd -------------------------------------------------------------------------------- /man/e_bar_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_bar_full.Rd -------------------------------------------------------------------------------- /man/e_boxplot_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_boxplot_full.Rd -------------------------------------------------------------------------------- /man/e_density_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_density_full.Rd -------------------------------------------------------------------------------- /man/e_heatmap_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_heatmap_full.Rd -------------------------------------------------------------------------------- /man/e_legend_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_legend_full.Rd -------------------------------------------------------------------------------- /man/e_parallel_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_parallel_full.Rd -------------------------------------------------------------------------------- /man/e_title_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_title_full.Rd -------------------------------------------------------------------------------- /man/e_toolbox_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_toolbox_full.Rd -------------------------------------------------------------------------------- /man/e_tooltip_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_tooltip_full.Rd -------------------------------------------------------------------------------- /man/e_visual_map_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_visual_map_full.Rd -------------------------------------------------------------------------------- /man/e_x_axis_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_x_axis_full.Rd -------------------------------------------------------------------------------- /man/e_y_axis_full.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianAntico/AutoPlots/HEAD/man/e_y_axis_full.Rd --------------------------------------------------------------------------------