Object

io.github.fucusy

Viz

Related Doc: package fucusy

Permalink

object Viz

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Viz
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def data2html(column2data: Seq[(String, Seq[String])], title: String): String

    Permalink

    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

    column2data

    the data, each element contains column name, and a list of string

  7. def data2table(column2data: Seq[(String, Seq[String])], title: String): String

    Permalink

    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

    column2data

    the data, each record contains column name, and a list of string

  8. def dataframe2data(df: DataFrame, limitShowNumber: Int = 1): Seq[(String, Seq[String])]

    Permalink
  9. def dataframe2html(df: DataFrame, title: String, limitShowNumber: Int = 1): String

    Permalink

    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

    title

    : the description of whole df

  10. def dataframe2html2D(df: DataFrame, limitShowNumber: Int = 1): String

    Permalink

    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.

  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. def imgUrl2tag(url: String): String

    Permalink
  17. def isImgUrl(s: String): Boolean

    Permalink
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def warpBody(body: String): String

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped