Object

com.holdenkarau.spark.testing

DataframeGenerator

Related Doc: package testing

Permalink

object DataframeGenerator

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DataframeGenerator
  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 arbitraryDataFrame(sqlContext: SQLContext, schema: StructType, minPartitions: Int = 1): Arbitrary[DataFrame]

    Permalink

    Creates a DataFrame Generator for the given Schema.

    Creates a DataFrame Generator for the given Schema.

    sqlContext

    SQL Context.

    schema

    The required Schema.

    minPartitions

    minimum number of partitions, defaults to 1.

    returns

    Arbitrary DataFrames generator of the required schema.

  5. def arbitraryDataFrameWithCustomFields(sqlContext: SQLContext, schema: StructType, minPartitions: Int = 1)(userGenerators: ColumnGenerator*): Arbitrary[DataFrame]

    Permalink

    Creates a DataFrame Generator for the given Schema, and the given custom generators.

    Creates a DataFrame Generator for the given Schema, and the given custom generators. custom generators should be in the form of (column index, generator function).

    Note: The given custom generators should match the required schema, for ex. you can't use Int generator for StringType.

    Note 2: The ColumnGenerator* accepted as userGenerators has changed. ColumnGenerator is now the base class of the accepted generators, users upgrading to 0.6 need to change their calls to use Column. Futher explanation can be found in the release notes, and in the class descriptions at the bottom of this file.

    sqlContext

    SQL Context.

    schema

    The required Schema.

    minPartitions

    minimum number of partitions, defaults to 1.

    userGenerators

    custom user generators in the form of (column index, generator function). column index starts from 0 to length - 1

    returns

    Arbitrary DataFrames generator of the required schema.

  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def getRowGenerator(schema: StructType, customGenerators: Seq[ColumnGenerator]): Gen[Row]

    Permalink

    Creates row generator for the required schema and with user's custom generators.

    Creates row generator for the required schema and with user's custom generators.

    Note: Custom generators should match the required schema, for ex. you can't use Int generator for StringType.

    schema

    the required Row's schema.

    customGenerators

    user custom generator, this is useful if the user want to Control specific columns generation.

    returns

    Gen[Row]

  13. def getRowGenerator(schema: StructType): Gen[Row]

    Permalink

    Creates row generator for the required schema.

    Creates row generator for the required schema.

    schema

    the required Row's schema.

    returns

    Gen[Row]

  14. def hashCode(): Int

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped