Utilities


HtmlAnalysis

[source]

createHtmlAnalysisString
  1. public static String createHtmlAnalysisString(DataAnalysis analysis) throws Exception

Render a data analysis object as a HTML file. This will produce a summary table, along charts fornumerical columns. The contents of the HTML file are returned as a String, which should be writtento a .html file.

  • param analysis Data analysis object to render
  • see #createHtmlAnalysisFile(DataAnalysis, File)
createHtmlAnalysisFile
  1. public static void createHtmlAnalysisFile(DataAnalysis dataAnalysis, File output) throws Exception

Render a data analysis object as a HTML file. This will produce a summary table, along charts fornumerical columns

  • param dataAnalysis Data analysis object to render
  • param output Output file (should have extension .html)

HtmlSequencePlotting

[source]

A simple utility for plotting DataVec sequence data to HTML files.Each file contains only one sequence. Each column is plotted separately; only numerical and categorical columns areplotted.

createHtmlSequencePlots
  1. public static String createHtmlSequencePlots(String title, Schema schema, List<List<Writable>> sequence)
  2. throws Exception

Create a HTML file with plots for the given sequence.

  • param title Title of the page
  • param schema Schema for the data
  • param sequence Sequence to plot
  • return HTML file as a string
createHtmlSequencePlotFile
  1. public static void createHtmlSequencePlotFile(String title, Schema schema, List<List<Writable>> sequence,
  2. File output) throws Exception

Create a HTML file with plots for the given sequence and write it to a file.

  • param title Title of the page
  • param schema Schema for the data
  • param sequence Sequence to plot