convert data to html, it will automatically convert image url to img tag in html
convert data to html, it will automatically convert image url to img tag in html
the data, each element contains column name, and a list of string
convert data to the table part of html, it will automatically convert image url to img tag in html
convert data to the table part of html, it will automatically convert image url to img tag in html
the data, each record contains column name, and a list of string
suppose df have A, B, C, D, order these five columns first step: we get four information then can generate html - the description of whole df - the value of columns.
suppose df have A, B, C, D, order these five columns first step: we get four information then can generate html - the description of whole df - the value of columns. make it a sequence: Seq[String, Seq[String] = Seq(A -> Seq[....], B -> Seq[....], C -> Seq[....], D -> Seq[....]) if the seq value is image, we will handle it automatically and specially. - columnNames
second step: using the four information got form step 1 to generate html
: the description of whole df
this method will change dataframe to html which is very convenient to show as a 2D visualization.
this method will change dataframe to html which is very convenient to show as a 2D visualization. since it's a 2D visualization, you must provide rowOrderCol and colOrderCol.