Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package saddle

    Saddle is a Scala Data Library.

    Saddle

    Saddle is a Scala Data Library.

    Saddle provides array-backed, indexed one- and two-dimensional data structures.

    These data structures are specialized on JVM primitives. With them one can often avoid the overhead of boxing and unboxing.

    Basic operations also aim to be robust to missing values (NA's)

    The building blocks are intended to be easily composed.

    The foundational building blocks are:

    Inspiration for Saddle comes from many sources, including the R programming language, the pandas data analysis library for Python, and the Scala collections library.

    Definition Classes
    org
  • package csv
    Definition Classes
    saddle
  • ByteChannel
  • CsvParser
  • CsvSettings
  • CsvWriter
o

org.saddle.csv

CsvWriter

object CsvWriter

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  20. def writeFrameToArray[RX, CX, T](frame: Frame[RX, CX, T], withColIx: Boolean = true, withRowIx: Boolean = true, settings: CsvSettings = new CsvSettings())(implicit arg0: ST[T]): Array[Byte]
  21. def writeFrameToFile[RX, CX, T](frame: Frame[RX, CX, T], path: String, withColIx: Boolean = true, withRowIx: Boolean = true, settings: CsvSettings = new CsvSettings())(implicit arg0: ST[T]): Unit

    Write a frame in CSV format to a file at the path provided

    Write a frame in CSV format to a file at the path provided

    path

    File to write

    withColIx

    If true, print out headers as first row

    withRowIx

    If true, print out index value as first column

    settings

    Settings to use in formatting

  22. def writeFrameToStream[RX, CX, T](frame: Frame[RX, CX, T], stream: OutputStream, withColIx: Boolean = true, withRowIx: Boolean = true, settings: CsvSettings = new CsvSettings())(implicit arg0: ST[T]): Unit

    Write a frame in CSV format to the stream provided

    Write a frame in CSV format to the stream provided

    stream

    Stream to write on

    withColIx

    If true, print out headers as first row

    withRowIx

    If true, print out index value as first column

    settings

    Settings to use in formatting

  23. def writeSeriesToArray[X, T](series: Series[X, T], withColIx: Boolean = false, withRowIx: Boolean = true, settings: CsvSettings = new CsvSettings())(implicit arg0: ST[X], arg1: ORD[X], arg2: ST[T]): Array[Byte]
  24. def writeSeriesToFile[X, T](series: Series[X, T], path: String, withColIx: Boolean = false, withRowIx: Boolean = true, settings: CsvSettings = new CsvSettings())(implicit arg0: ST[X], arg1: ORD[X], arg2: ST[T]): Unit

    Provides enrichment on Series object for writing to a Csv file.

  25. def writeSeriesToStream[X, T](series: Series[X, T], stream: OutputStream, withColIx: Boolean = false, withRowIx: Boolean = true, settings: CsvSettings = new CsvSettings())(implicit arg0: ST[X], arg1: ORD[X], arg2: ST[T]): Unit

Inherited from AnyRef

Inherited from Any

Ungrouped