Object

smile

read

Related Doc: package smile

Permalink

object read

Data loading utilities.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. read
  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. def apply(file: Path): AnyRef

    Permalink

    Reads a Serializable object/model.

  5. def apply(file: String): AnyRef

    Permalink

    Reads a Serializable object/model.

  6. def arff(file: Path): DataFrame

    Permalink

    Reads an ARFF file.

  7. def arff(file: String): DataFrame

    Permalink

    Reads an ARFF file.

  8. def arrow(file: Path): DataFrame

    Permalink

    Reads an Apache Arrow file.

  9. def arrow(file: String): DataFrame

    Permalink

    Reads an Apache Arrow file.

  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def avro(file: Path, schema: Path): DataFrame

    Permalink

    Reads an Apache Avro file.

  12. def avro(file: Path, schema: InputStream): DataFrame

    Permalink

    Reads an Apache Avro file.

  13. def avro(file: String, schema: String): DataFrame

    Permalink

    Reads an Apache Avro file.

  14. def avro(file: String, schema: InputStream): DataFrame

    Permalink

    Reads an Apache Avro file.

  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def csv(file: Path, format: CSVFormat, schema: StructType): DataFrame

    Permalink

    Reads a CSV file.

  17. def csv(file: String, format: CSVFormat, schema: StructType): DataFrame

    Permalink

    Reads a CSV file.

  18. def csv(file: Path, delimiter: Char, header: Boolean, quote: Char, escape: Char, schema: StructType): DataFrame

    Permalink

    Reads a CSV file.

  19. def csv(file: String, delimiter: Char = ',', header: Boolean = true, quote: Char = '"', escape: Char = '\\', schema: StructType = null): DataFrame

    Permalink

    Reads a CSV file.

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def jdbc(rs: ResultSet): DataFrame

    Permalink

    Reads a JDBC query result to a data frame.

  27. def json(file: Path, mode: Mode, schema: StructType): DataFrame

    Permalink

    Reads a JSON file.

  28. def json(file: String, mode: Mode, schema: StructType): DataFrame

    Permalink

    Reads a JSON file.

  29. def json(file: Path): DataFrame

    Permalink

    Reads a JSON file.

  30. def json(file: String): DataFrame

    Permalink

    Reads a JSON file.

  31. def libsvm(file: Path): Dataset[Instance[SparseArray]]

    Permalink

    Reads a LivSVM file.

  32. def libsvm(file: String): Dataset[Instance[SparseArray]]

    Permalink

    Reads a LivSVM file.

  33. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  36. def parquet(file: Path): DataFrame

    Permalink

    Reads an Apache Parquet file.

  37. def parquet(file: String): DataFrame

    Permalink

    Reads an Apache Parquet file.

  38. def sas(file: Path): DataFrame

    Permalink

    Reads a SAS7BDAT file.

  39. def sas(file: String): DataFrame

    Permalink

    Reads a SAS7BDAT file.

  40. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def wavefront(file: Path): (Array[Array[Double]], Array[Array[Int]])

    Permalink

    Reads a Wavefront OBJ file.

    Reads a Wavefront OBJ file. The OBJ file format is a simple format of 3D geometry including the position of each vertex, the UV position of each texture coordinate vertex, vertex normals, and the faces that make each polygon defined as a list of vertices, and texture vertices. Vertices are stored in a counter-clockwise order by default, making explicit declaration of face normals unnecessary. OBJ coordinates have no units, but OBJ files can contain scale information in a human readable comment line.

    Note that we parse only vertex and face elements. All other information ignored.

    file

    the file path

    returns

    a tuple of vertex array and edge array.

  46. def wavefront(file: String): (Array[Array[Double]], Array[Array[Int]])

    Permalink

    Reads a Wavefront OBJ file.

  47. def xstream(file: Path): AnyRef

    Permalink

    Reads an object/model that was serialized by XStream.

  48. def xstream(file: String): AnyRef

    Permalink

    Reads an object/model that was serialized by XStream.

Inherited from AnyRef

Inherited from Any

Ungrouped