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
which need to contain column "row" to let us know which row you want to show. you should start with 1 in this column df also need to contain column "title" to let us know the title of each visualization row. you need to give the same title the all data you want to show in the same visualization row. or we will randomly choose one title.