Series

class Series[T] extends IndexOps[Series[T]]
trait IndexOps[Series[T]]
class Object
trait Matchable
class Any

Value members

Concrete methods

@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("rem")
def %(v: Int): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("andOperator")
def &&(series: SeriesBoolean): Series[Boolean]
Implicitly added by toSeriesBoolean
Since

0.1.0

@targetName("times")
def *(series: Series[_]): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("times")
def *(v: Double): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("times")
def *(v: Int): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("times")
def *(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("times")
def *(series: SeriesInt): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("times")
def *(v: Double): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("times")
def *(v: Int): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("times")
def *(series: SeriesInt): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("times")
def *(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("times")
def *(v: Int): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("times")
def *(v: Double): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("plus")
def +(series: Series[_]): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("plus")
def +(v: Double): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("plus")
def +(v: Int): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("plus")
def +(s: String): Series[String]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("plus")
def +(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("plus")
def +(series: SeriesInt): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("plus")
def +(v: Double): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("plus")
def +(v: Int): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("plus")
def +(series: SeriesInt): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("plus")
def +(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("plus")
def +(v: Int): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("plus")
def +(v: Double): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("plus")
def +(series: Series[String]): Series[String]
Implicitly added by toSeriesString
Since

0.1.0

@targetName("plus")
def +(s: String): Series[String]
Implicitly added by toSeriesString
Since

0.1.0

@targetName("plus")
def +[T](series: Series[T])(implicit evidence$1: ClassTag[T]): Series[String]
Implicitly added by toSeriesString
Since

0.1.0

@targetName("prepend")
def +:(string: String): Series[String]

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

@targetName("minus")
def -(series: Series[_]): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("minus")
def -(v: Double): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("minus")
def -(v: Int): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("minus")
def -(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("minus")
def -(series: SeriesInt): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("minus")
def -(v: Double): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("minus")
def -(v: Int): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("minus")
def -(series: SeriesInt): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("minus")
def -(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("minus")
def -(v: Int): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("minus")
def -(v: Double): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("div")
def /(series: Series[_]): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("div")
def /(v: Double): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("div")
def /(v: Int): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("div")
def /(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("div")
def /(series: SeriesInt): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("div")
def /(v: Double): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("div")
def /(v: Int): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("div")
def /(series: SeriesInt): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("div")
def /(series: SeriesDouble): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("div")
def /(v: Int): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("div")
def /(v: Double): Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("prepend")

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
@targetName("smaller")
def <(series: Series[_]): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("smaller")
def <(v: Double): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("smaller")
def <(v: Int): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("smaller")
def <(series: SeriesDouble): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("smaller")
def <(v: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("smaller")
def <(series: SeriesInt): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("smaller")
def <(v: Int): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("isBefore")
def <(series: SeriesLocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isBefore")
def <(t: LocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isBefore")
def <(series: SeriesLocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isBefore")
def <(t: LocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isBefore")
def <(series: SeriesLocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isBefore")
def <(t: LocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isBefore")
def <(series: SeriesZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("isBefore")
def <(t: ZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("smallerEqual")
def <=(series: Series[_]): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("smallerEqual")
def <=(v: Double): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("smallerEqual")
def <=(v: Int): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("smallerEqual")
def <=(series: SeriesDouble): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("smallerEqual")
def <=(v: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("smallerEqual")
def <=(series: SeriesInt): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("smallerEqual")
def <=(v: Int): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("isNotAfter")
def <=(series: SeriesLocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isNotAfter")
def <=(t: LocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isNotAfter")
def <=(series: SeriesLocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isNotAfter")
def <=(t: LocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isNotAfter")
def <=(series: SeriesLocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isNotAfter")
def <=(t: LocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isNotAfter")
def <=(series: SeriesZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("isNotAfter")
def <=(t: ZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

@targetName("greater")
def >(series: Series[_]): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("greater")
def >(v: Double): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("greater")
def >(v: Int): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("greater")
def >(series: SeriesDouble): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("greater")
def >(v: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("greater")
def >(series: SeriesInt): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("greater")
def >(v: Int): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("isAfter")
def >(series: SeriesLocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isAfter")
def >(t: LocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isAfter")
def >(series: SeriesLocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isAfter")
def >(t: LocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isAfter")
def >(series: SeriesLocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isAfter")
def >(t: LocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isAfter")
def >(series: SeriesZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("isAfter")
def >(t: ZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("greaterEqual")
def >=(series: Series[_]): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("greaterEqual")
def >=(v: Double): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("greaterEqual")
def >=(v: Int): Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

@targetName("greaterEqual")
def >=(series: SeriesDouble): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("greaterEqual")
def >=(v: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

@targetName("greaterEqual")
def >=(series: SeriesInt): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("greaterEqual")
def >=(v: Int): Series[Boolean]
Implicitly added by toSeriesInt
Since

0.1.0

@targetName("isNotBefore")
def >=(series: SeriesLocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isNotBefore")
def >=(t: LocalDate): Series[Boolean]
Implicitly added by toSeriesLocalDate
Since

0.1.0

@targetName("isNotBefore")
def >=(series: SeriesLocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isNotBefore")
def >=(t: LocalDateTime): Series[Boolean]
Implicitly added by toSeriesLocalDateTime
Since

0.1.0

@targetName("isNotBefore")
def >=(series: SeriesLocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isNotBefore")
def >=(t: LocalTime): Series[Boolean]
Implicitly added by toSeriesLocalTime
Since

0.1.0

@targetName("isNotBefore")
def >=(series: SeriesZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

@targetName("isNotBefore")
def >=(t: ZonedDateTime): Series[Boolean]
Implicitly added by toSeriesZonedDateTime
Since

0.1.0

def agg[R](start: R, f: (R, T) => R): R

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

def all: Boolean
Implicitly added by toSeriesBoolean

Determines if all (non-null) values are true.

Determines if all (non-null) values are true.

Returns

False if any value is false and true otherwise.

Since

0.1.0

def allStrict: Boolean
Implicitly added by toSeriesBoolean

Determines if all values are true and none are null.

Determines if all values are true and none are null.

Returns

True all value are true and false otherwise. False if index is a slice.

Since

0.1.0

def and(series: SeriesBoolean): Series[Boolean]
Implicitly added by toSeriesBoolean
Since

0.1.0

def any: Boolean
Implicitly added by toSeriesBoolean
Since

0.1.0

def apply(ix: Int): Option[T]

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

def apply(ix: Option[Int]): Option[T]

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

inline def apply(ix: Int, default: => T): T

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

inline def apply(ix: Option[Int], default: => T): T

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

def as(name: String): Series[T]

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

def asBoolean: Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

def asDouble: Series[Double]
Implicitly added by toSeriesAny
Since

0.1.0

def asInt: Series[Int]
Implicitly added by toSeriesAny
Since

0.1.0

def asString: Series[String]
Implicitly added by toSeriesAny
Since

0.1.0

def atTime(hour: Int, minute: Int, second: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDate

Concatenates date and time.

Concatenates date and time.

Value Params
hour

Hour.

minute

Minute.

second

Second.

Returns

Series of type LocalDateTime.

Since

0.1.0

def atTime(series: Series[LocalTime]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDate

Concatenates date and time.

Concatenates date and time.

Value Params
series

Series of type LocalTime.

Returns

Series of type LocalDateTime.

Since

0.1.0

def atTime(time: LocalTime): Series[LocalDateTime]
Implicitly added by toSeriesLocalDate

Concatenates date and time.

Concatenates date and time.

Value Params
time

LocalTime.

Returns

Series of type LocalDateTime.

Since

0.1.0

def clip(lower: Double, upper: Double): Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

def compareIgnoreCase(s: String): Series[Boolean]
Implicitly added by toSeriesString
See also

String.compareToIgnoreCase

Since

0.1.0

def compareIgnoreCase(series: Series[String]): Series[Boolean]
Implicitly added by toSeriesString
See also

String.compareToIgnoreCase

Since

0.1.0

def contains(s: String): Series[Boolean]
Implicitly added by toSeriesString
See also

String.contains

Since

0.1.0

def count: Int

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

def countFalse: Int
Implicitly added by toSeriesBoolean
Since

0.1.0

def countNotNaN: Int
Implicitly added by toSeriesDouble
Since

0.1.0

def countTrue: Int
Implicitly added by toSeriesBoolean
Since

0.1.0

def day: Series[Int]
Implicitly added by toSeriesLocalDate

Gets the day in the month.

Gets the day in the month.

Returns

The day as integer value ranging from 1 to 31.

Since

0.1.0

def day: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the day in the month.

Gets the day in the month.

Returns

The day as integer value ranging from 1 to 31.

Since

0.1.0

def day: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the day in the month.

Gets the day in the month.

Returns

The day as integer value ranging from 1 to 31.

Since

0.1.0

def dayOfWeek: Series[Int]
Implicitly added by toSeriesLocalDate

Gets the day in the week as of the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Gets the day in the week as of the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Returns

The day as integer value ranging from 1 to 7.

Since

0.1.0

def dayOfWeek: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the day in the week as of the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Gets the day in the week as of the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Returns

The day as integer value ranging from 1 to 7.

Since

0.1.0

def dayOfWeek: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the day in the week as of the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Gets the day in the week as of the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).

Returns

The day as integer value ranging from 1 to 7.

Since

0.1.0

def dayOfYear: Series[Int]
Implicitly added by toSeriesLocalDate

Gets the day in the year.

Gets the day in the year.

Returns

The day as integer value ranging from 1 to 365 or 1 to 366 in a leap year.

Since

0.1.0

def dayOfYear: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the day in the year.

Gets the day in the year.

Returns

The day as integer value ranging from 1 to 365 or 1 to 366 in a leap year.

Since

0.1.0

def dayOfYear: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the day in the year.

Gets the day in the year.

Returns

The day as integer value ranging from 1 to 365 or 1 to 366 in a leap year.

Since

0.1.0

def defined: Series[T]

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

def dense: Series[T]

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

def display(n: Int, colWidth: Int): Unit

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

def distinct: Series[T]

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

def endsWith(s: String): Series[Boolean]
Implicitly added by toSeriesString
See also

String.endsWith

Since

0.1.0

@nowarn
override def equals(that: Any): Boolean

Indicates if two Series are equal with respect to

Indicates if two Series are equal with respect to

  • name,
  • index and
  • values in all rows.
Value Params
that

Series (or object) to compare with.

Returns

True if equal and false otherwise.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method differentiates between a missing index and an undefined (null) value.
  • If the object is not a Series it returns false.
Definition Classes
Any
def equalsByValue[T2](series: Series[T2]): Boolean

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
def exists(value: T): Boolean

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

def fill[T2 <: T](series: Series[T2]): Series[T]

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

def fill(value: T): Series[T]

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

def fillAll[T2 <: T](series: Series[T2]): Series[T]

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

def fillAll(value: T): Series[T]

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

def first: Option[Int]

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

def first(f: T => Boolean): Option[Int]

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

def first(value: T): Option[Int]

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

def first[T2](series: Series[T2], value: T2): Option[T]

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

def first[T2](series: Series[T2], value: T2, default: => T): T

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

def forall(f: T => Boolean): Boolean

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

def forallStrictly(f: T => Boolean): Boolean

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

inline def get(ix: Int): T

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

inline def get(ix: Option[Int]): T

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

def hasSameDefined[T2](series: Series[T2]): Boolean

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
def hasSameIndex[T2](series: Series[T2]): Boolean

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

def hasUndefined: Boolean

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

def hash: Series[Int]
Implicitly added by toSeriesString
See also

String.hashCode

Since

0.1.0

override def hashCode: Int

Hash code.

Hash code.

Returns

Hash code derived from index length and name.

Since

0.1.0

Definition Classes
Any
def headOption: Option[T]

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

def headValue: Option[T]

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

def hour: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the hour.

Gets the hour.

Returns

The hour as integer value ranging from 0 to 23.

Since

0.1.0

def hour: Series[Int]
Implicitly added by toSeriesLocalTime

Gets the hour.

Gets the hour.

Returns

The hour as integer value ranging from 0 to 23.

Since

0.1.0

def hour: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the hour.

Gets the hour.

Returns

The hour as integer value ranging from 0 to 23.

Since

0.1.0

def inRange(lower: Double, upper: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

def inRangeExclusive(lower: Double, upper: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

def inRangeLowerExclusive(lower: Double, upper: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

def inRangeUpperExclusive(lower: Double, upper: Double): Series[Boolean]
Implicitly added by toSeriesDouble
Since

0.1.0

def indexEmpty: Boolean

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

def indexIterator: Iterator[Int]

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

def indexNonEmpty: Boolean

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

def indexOf(s: String): Series[Int]
Implicitly added by toSeriesString
See also

String.indexOf

Since

0.1.0

def indicesTrue: Array[Int]
Implicitly added by toSeriesBoolean
Since

0.1.0

def info: String

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

def isDefined: Boolean

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

def isEmpty: Boolean

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

def isEmptyString: Series[Boolean]
Implicitly added by toSeriesString
Returns

True, if String is empty.

Since

0.1.0

def isType[T2](implicit evidence$10: Typeable[T2]): Boolean

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

def iterator: Iterator[Option[T]]

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

def last: Option[Int]

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

def last(value: T): Option[Int]

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

def last[T2](series: Series[T2], value: T2): Option[T]

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

def last[T2](series: Series[T2], value: T2, default: => T): T

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

def lastIndexOf(s: String): Series[Int]
Implicitly added by toSeriesString
See also

String.lastIndexOf

Since

0.1.0

def length: Int

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

def lengths: Series[Int]
Implicitly added by toSeriesString
See also

String.length

Since

0.1.0

def lower: Series[String]
Implicitly added by toSeriesString
See also

String.toLowerCase

Since

0.1.0

def mad: Double
Implicitly added by toSeriesDouble
Since

0.1.0

def map[R](f: T => R)(implicit evidence$14: ClassTag[R]): Series[R]

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

def map[T2, R](series: Series[T2], f: (T, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

def matches(regex: String): Series[Boolean]
Implicitly added by toSeriesString
See also

String.matches

Since

0.1.0

def max: Boolean
Implicitly added by toSeriesBoolean
Since

0.1.0

def max: Double
Implicitly added by toSeriesDouble
Since

0.1.0

def max: Int
Implicitly added by toSeriesInt
Since

0.1.0

def mean: Double
Implicitly added by toSeriesDouble
Since

0.1.0

def min: Boolean
Implicitly added by toSeriesBoolean
Since

0.1.0

def min: Double
Implicitly added by toSeriesDouble
Since

0.1.0

def min: Int
Implicitly added by toSeriesInt
Since

0.1.0

def minus(series: Series[Int], unit: TemporalUnit): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("minusLong")
def minus(series: Series[Long], unit: TemporalUnit): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def minus(value: Long, unit: TemporalUnit): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to subtract.

Returns

Series.

Since

0.1.0

def minus(series: Series[Int], unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("minusLong")
def minus(series: Series[Long], unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def minus(value: Long, unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to subtract.

Returns

Series.

Since

0.1.0

def minus(series: Series[Int], unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("minusLong")
def minus(series: Series[Long], unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def minus(value: Long, unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to subtract.

Returns

Series.

Since

0.1.0

def minus(series: Series[Int], unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("minusLong")
def minus(series: Series[Long], unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
series

Series with values to subtract.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def minus(value: Long, unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Subtracts the value in the specified temporal unit.

Subtracts the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to subtract.

Returns

Series.

Since

0.1.0

def minute: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the minute.

Gets the minute.

Returns

The minute as integer value ranging from 0 to 59.

Since

0.1.0

def minute: Series[Int]
Implicitly added by toSeriesLocalTime

Gets the minute.

Gets the minute.

Returns

The minute as integer value ranging from 0 to 59.

Since

0.1.0

def minute: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the minute.

Gets the minute.

Returns

The minute as integer value ranging from 0 to 59.

Since

0.1.0

def mod(v: Int): Series[Int]
Implicitly added by toSeriesInt
Since

0.1.0

def month: Series[Int]
Implicitly added by toSeriesLocalDate

Gets the month.

Gets the month.

Returns

The month as integer value ranging from 1 to 12.

Since

0.1.0

def month: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the month.

Gets the month.

Returns

The month as integer value ranging from 1 to 12.

Since

0.1.0

def month: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the month.

Gets the month.

Returns

The month as integer value ranging from 1 to 12.

Since

0.1.0

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
def nano: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the nano seconds.

Gets the nano seconds.

Returns

The nano seconds as integer value ranging from 0 to 999,999,999.

Since

0.1.0

def nano: Series[Int]
Implicitly added by toSeriesLocalTime

Gets the nano seconds.

Gets the nano seconds.

Returns

The nano seconds as integer value ranging from 0 to 999,999,999.

Since

0.1.0

def nano: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the nano seconds.

Gets the nano seconds.

Returns

The nano seconds as integer value ranging from 0 to 999,999,999.

Since

0.1.0

def nonEmpty: Boolean

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

def nonEmptyString: Series[Boolean]
Implicitly added by toSeriesString
Returns

True, if String is not empty.

Since

0.1.0

def numRows: Int

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

def numRowsBase: Int

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

def offset: Series[ZoneOffset]
Implicitly added by toSeriesZonedDateTime

Gets the time zone offset.

Gets the time zone offset.

Returns

The ZoneOffset.

Since

0.1.0

def or(series: SeriesBoolean): Series[Boolean]
Implicitly added by toSeriesBoolean
Since

0.1.0

def orElse[T2 <: T](series: Series[T2]): Series[T]

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

def orElse(value: T): Series[T]

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

def plus(series: Series[Int], unit: TemporalUnit): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("plusLong")
def plus(series: Series[Long], unit: TemporalUnit): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def plus(value: Long, unit: TemporalUnit): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to add.

Returns

Series.

Since

0.1.0

def plus(series: Series[Int], unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("plusLong")
def plus(series: Series[Long], unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def plus(value: Long, unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to add.

Returns

Series.

Since

0.1.0

def plus(series: Series[Int], unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("plusLong")
def plus(series: Series[Long], unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def plus(value: Long, unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to add.

Returns

Series.

Since

0.1.0

def plus(series: Series[Int], unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

@targetName("plusLong")
def plus(series: Series[Long], unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
series

Series with values to add.

unit

Temporal unit.

Returns

Series.

Since

0.1.0

def plus(value: Long, unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Adds the value in the specified temporal unit.

Adds the value in the specified temporal unit.

Value Params
unit

Temporal unit.

value

Value to add.

Returns

Series.

Since

0.1.0

def replace(target: String, replacement: String): Series[String]
Implicitly added by toSeriesString
See also

String.replace

Since

0.1.0

def replaceAll(regex: String, replacement: String): Series[String]
Implicitly added by toSeriesString
See also

String.replaceAll

Since

0.1.0

def replaceFirst(regex: String, replacement: String): Series[String]
Implicitly added by toSeriesString
See also

String.replaceFirst

Since

0.1.0

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

def rint: Series[Double]
Implicitly added by toSeriesDouble
Since

0.1.0

def round: Series[Int]
Implicitly added by toSeriesDouble
Since

0.1.0

def second: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the second.

Gets the second.

Returns

The second as integer value ranging from 0 to 59.

Since

0.1.0

def second: Series[Int]
Implicitly added by toSeriesLocalTime

Gets the second.

Gets the second.

Returns

The second as integer value ranging from 0 to 59.

Since

0.1.0

def second: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the second.

Gets the second.

Returns

The second as integer value ranging from 0 to 59.

Since

0.1.0

def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

def showValues(n: Int): Unit

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

def sortValues: Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

def sortValues(order: Order): Series[Any]
Implicitly added by toSeriesAny
Since

0.1.0

def sorted(implicit ordering: Ordering[T]): Series[T]

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
def sorted(order: Order)(implicit ordering: Ordering[T]): Series[T]

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
def split(regex: String, limit: Int): Series[Array[String]]
Implicitly added by toSeriesString
See also

String.split

Since

0.1.0

def startsWith(s: String, beginIndex: Int): Series[Boolean]
Implicitly added by toSeriesString
See also

String.startsWith

Since

0.1.0

def str: Series[String]

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
def substring(beginIndex: Int): Series[String]
Implicitly added by toSeriesString
Returns

Sub string or empty string if out of bounds.

See also

String.substring

Since

0.1.0

def substring(beginIndex: Int, endIndex: Int): Series[String]
Implicitly added by toSeriesString
Returns

Sub string or empty string if out of bounds.

See also

String.substring

Since

0.1.0

@targetName("sum")
def sum: Any
Implicitly added by toSeriesAny
Since

0.1.0

def sum: Int
Implicitly added by toSeriesBoolean
Since

0.1.0

def sum: Double
Implicitly added by toSeriesDouble
Since

0.1.0

def sum: Int
Implicitly added by toSeriesInt
Since

0.1.0

def toAny: Series[Any]

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

def toArray: Array[Option[T]]

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

def toBoolean: Series[Boolean]
Implicitly added by toSeriesAny
Since

0.1.0

def toBoolean: Series[Boolean]
Implicitly added by toSeriesString
Returns

Parsed Boolean Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Boolean.

Since

0.1.0

def toDouble: Series[Double]
Implicitly added by toSeriesAny
Since

0.1.0

def toDouble: Series[Double]
Implicitly added by toSeriesBoolean
Since

0.1.0

def toDouble: Series[Double]
Implicitly added by toSeriesInt
Since

0.1.0

def toDouble: Series[Double]
Implicitly added by toSeriesString
Returns

Parsed Double Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Double.

Since

0.1.0

def toFlatArray: Array[T]

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

def toFlatList: List[T]

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

def toFlatSeq: Seq[T]

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

def toFloat: Series[Float]
Implicitly added by toSeriesString
Returns

Parsed Float Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Float.

Since

0.1.0

def toInt: Series[Int]
Implicitly added by toSeriesAny
Since

0.1.0

def toInt: Series[Int]
Implicitly added by toSeriesBoolean
Since

0.1.0

def toInt: Series[Int]
Implicitly added by toSeriesString
Returns

Parsed Int Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Int.

Since

0.1.0

def toList: List[Option[T]]

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

def toLocalDate: Series[LocalDate]
Implicitly added by toSeriesAny
Returns

Parsed LocalDate Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalDate

Since

0.1.0

def toLocalDate: Series[LocalDate]
Implicitly added by toSeriesLocalDateTime

Gets the local date.

Gets the local date.

Returns

The local date part.

Since

0.1.0

def toLocalDate: Series[LocalDate]
Implicitly added by toSeriesString
Returns

Parsed LocalDate Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalDate

Since

0.1.0

def toLocalDate: Series[LocalDate]
Implicitly added by toSeriesZonedDateTime

Gets the local date.

Gets the local date.

Returns

The local date part.

Since

0.1.0

def toLocalDateTime: Series[LocalDateTime]
Implicitly added by toSeriesAny
Returns

Parsed LocalDateTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalDateTime

Since

0.1.0

def toLocalDateTime: Series[LocalDateTime]
Implicitly added by toSeriesString
Returns

Parsed LocalDateTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalDateTime

Since

0.1.0

def toLocalDateTime: Series[LocalDateTime]
Implicitly added by toSeriesZonedDateTime

Gets the local date time.

Gets the local date time.

Returns

The local date time part.

Since

0.1.0

def toLocalTime: Series[LocalTime]
Implicitly added by toSeriesAny
Returns

Parsed LocalTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalTime

Since

0.1.0

def toLocalTime: Series[LocalTime]
Implicitly added by toSeriesLocalDateTime

Gets the local time.

Gets the local time.

Returns

The local time part.

Since

0.1.0

def toLocalTime: Series[LocalTime]
Implicitly added by toSeriesString
Returns

Parsed LocalTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalTime

Since

0.1.0

def toLocalTime: Series[LocalTime]
Implicitly added by toSeriesZonedDateTime

Gets the local time.

Gets the local time.

Returns

The local time part.

Since

0.1.0

def toLong: Series[Long]
Implicitly added by toSeriesString
Returns

Parsed Long Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Long.

Since

0.1.0

def toSeq: Seq[Option[T]]

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

override def toString: String

Renders the Series as a table using default parameters.

Renders the Series as a table using default parameters.

Returns

Formatted table.

Since

0.1.0

Definition Classes
Any
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

def toZonedDateTime: Series[ZonedDateTime]
Implicitly added by toSeriesAny
Returns

Parsed ZonedDateTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.ZonedDateTime

Since

0.1.0

def toZonedDateTime: Series[ZonedDateTime]
Implicitly added by toSeriesString
Returns

Parsed ZonedDateTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.ZonedDateTime

Since

0.1.0

def trimString: Series[String]
Implicitly added by toSeriesString
See also

String.trim

Since

0.1.0

def truncatesTo(unit: TemporalUnit): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Truncates to the specified temporal unit.

Truncates to the specified temporal unit.

Value Params
unit

Temporal unit.

Returns

Series.

Since

0.1.0

def truncatesTo(unit: TemporalUnit): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Truncates to the specified temporal unit.

Truncates to the specified temporal unit.

Value Params
unit

Temporal unit.

Returns

Series.

Since

0.1.0

def truncatesTo(unit: TemporalUnit): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Truncates to the specified temporal unit.

Truncates to the specified temporal unit.

Value Params
unit

Temporal unit.

Returns

Series.

Since

0.1.0

def typeString: String

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
@targetName("notOperator")
def unary_!: Series[Boolean]
Implicitly added by toSeriesBoolean
Since

0.1.0

def union[T2 <: T](series: Series[T2]*): Series[T]

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

def unique: Array[T]

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

def until(series: Series[LocalDate], unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesLocalDate

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
series

Series with LocalDate.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(t: LocalDate, unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesLocalDate

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
t

LocalDate.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(series: Series[LocalDateTime], unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesLocalDateTime

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
series

Series with LocalDateTime.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(t: LocalDateTime, unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesLocalDateTime

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
t

LocalDateTime.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(series: Series[LocalTime], unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesLocalTime

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
series

Series with LocalTime.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(t: LocalTime, unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesLocalTime

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
t

LocalTime.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(series: Series[ZonedDateTime], unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesZonedDateTime

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
series

Series with ZonedDateTime.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def until(t: ZonedDateTime, unit: TemporalUnit): Series[Long]
Implicitly added by toSeriesZonedDateTime

Temporal difference in specified temporal unit.

Temporal difference in specified temporal unit.

Value Params
t

ZonedDateTime.

unit

Temporal unit measuring the time span.

Returns

Series.

Since

0.1.0

def update[T2 <: T](series: Series[T2]): Series[T]

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

def upper: Series[String]
Implicitly added by toSeriesString
See also

String.toUpperCase

Since

0.1.0

def withDay(day: Int): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sets the day of the month.

Sets the day of the month.

Value Params
day

The day as integer value ranging from 1 to 31.

Returns

Series.

Throws
DateTimeException

if the day-of-month value is invalid.

Since

0.1.0

def withDay(day: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the day of the month.

Sets the day of the month.

Value Params
day

The day as integer value ranging from 1 to 31.

Returns

Series.

Throws
DateTimeException

if the day-of-month value is invalid.

Since

0.1.0

def withDay(day: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the day of the month.

Sets the day of the month.

Value Params
day

The day as integer value ranging from 1 to 31.

Returns

Series.

Throws
DateTimeException

if the day-of-month value is invalid.

Since

0.1.0

def withDayOfYear(day: Int): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sets the day of the year.

Sets the day of the year.

Value Params
day

The day as integer value ranging from 1 to 365 or 1 to 366 in a leap year.

Returns

Series.

Throws
DateTimeException

if the day-of-month value is invalid.

Since

0.1.0

def withDayOfYear(day: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the day of the year.

Sets the day of the year.

Value Params
day

The day as integer value ranging from 1 to 365 or 1 to 366 in a leap year.

Returns

Series.

Throws
DateTimeException

if the day-of-month value is invalid.

Since

0.1.0

def withDayOfYear(day: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the day of the year.

Sets the day of the year.

Value Params
day

The day as integer value ranging from 1 to 365 or 1 to 366 in a leap year.

Returns

Series.

Throws
DateTimeException

if the day-of-month value is invalid.

Since

0.1.0

def withFixedOffsetZone(zone: ZoneId): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the time zone to the offset.

Sets the time zone to the offset.

Returns

Series.

Since

0.1.0

def withHour(hour: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the hour.

Sets the hour.

Value Params
hour

The hour as integer value ranging from 0 to 23.

Returns

Series.

Since

0.1.0

def withHour(hour: Int): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sets the hour.

Sets the hour.

Value Params
hour

The hour as integer value ranging from 0 to 23.

Returns

Series.

Since

0.1.0

def withHour(hour: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the hour.

Sets the hour.

Value Params
hour

The hour as integer value ranging from 0 to 23.

Returns

Series.

Since

0.1.0

def withMinute(minute: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the minute.

Sets the minute.

Value Params
minute

The minute as integer value ranging from 0 to 59.

Returns

Series.

Since

0.1.0

def withMinute(minute: Int): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sets the minute.

Sets the minute.

Value Params
minute

The minute as integer value ranging from 0 to 59.

Returns

Series.

Since

0.1.0

def withMinute(minute: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the minute.

Sets the minute.

Value Params
minute

The minute as integer value ranging from 0 to 59.

Returns

Series.

Since

0.1.0

def withMonth(month: Int): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sets the month.

Sets the month.

Value Params
month

The month as integer value ranging from 1 to 12.

Returns

Series.

Since

0.1.0

def withMonth(month: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the month.

Sets the month.

Value Params
month

The month as integer value ranging from 1 to 12.

Returns

Series.

Since

0.1.0

def withMonth(month: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the month.

Sets the month.

Value Params
month

The month as integer value ranging from 1 to 12.

Returns

Series.

Since

0.1.0

def withNano(nano: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the nano second.

Sets the nano second.

Value Params
nano

The nano second as integer value ranging from from 0 to 999,999,999.

Returns

Series.

Since

0.1.0

def withNano(nano: Int): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sets the nano second.

Sets the nano second.

Value Params
nano

The nano second as integer value ranging from from 0 to 999,999,999.

Returns

Series.

Since

0.1.0

def withNano(nano: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the nano second.

Sets the nano second.

Value Params
nano

The nano second as integer value ranging from from 0 to 999,999,999.

Returns

Series.

Since

0.1.0

def withSecond(second: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the second.

Sets the second.

Value Params
second

The second as integer value ranging from 0 to 59.

Returns

Series.

Since

0.1.0

def withSecond(second: Int): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sets the second.

Sets the second.

Value Params
second

The second as integer value ranging from 0 to 59.

Returns

Series.

Since

0.1.0

def withSecond(second: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the second.

Sets the second.

Value Params
second

The second as integer value ranging from 0 to 59.

Returns

Series.

Since

0.1.0

def withYear(year: Int): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sets the year.

Sets the year.

Value Params
year

The year as integer value.

Returns

Series.

Since

0.1.0

def withYear(year: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sets the year.

Sets the year.

Value Params
year

The year as integer value.

Returns

Series.

Since

0.1.0

def withYear(year: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets the year.

Sets the year.

Value Params
year

The year as integer value.

Returns

Series.

Since

0.1.0

def withZoneSameInstant(zone: ZoneId): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets a different time-zone keeping the same instant in time.

Sets a different time-zone keeping the same instant in time.

Value Params
zone

The time zone to change to.

Returns

Series.

Since

0.1.0

def withZoneSameLocal(zone: ZoneId): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sets a different time-zone retaining the local date-time if possible.

Sets a different time-zone retaining the local date-time if possible.

Value Params
zone

The time zone to change to.

Returns

Series.

Since

0.1.0

def year: Series[Int]
Implicitly added by toSeriesLocalDate

Gets the year.

Gets the year.

Returns

The year as integer value.

Since

0.1.0

def year: Series[Int]
Implicitly added by toSeriesLocalDateTime

Gets the year.

Gets the year.

Returns

The year as integer value.

Since

0.1.0

def year: Series[Int]
Implicitly added by toSeriesZonedDateTime

Gets the year.

Gets the year.

Returns

The year as integer value.

Since

0.1.0

def zone: Series[ZoneId]
Implicitly added by toSeriesZonedDateTime

Gets the time zone.

Gets the time zone.

Returns

The ZoneId.

Since

0.1.0

@targetName("concat")
def |(df: DataFrame): DataFrame

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
@targetName("concat")
def |(series: Series[_]): DataFrame

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
@targetName("orOperator")
def ||(series: SeriesBoolean): Series[Boolean]
Implicitly added by toSeriesBoolean
Since

0.1.0

Inherited methods

@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesAny

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesDouble

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesInt

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesString

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualByRow")
def !=(v: Int): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Double): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=(v: Boolean): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if the value of the series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("notEqualsByRow")
def !=[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are not equal,
  • false if values are equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesAny

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesBoolean

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesDouble

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesInt

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesLocalDate

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesLocalDateTime

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesLocalTime

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesString

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def +:(string: String): Series[String]
Implicitly added by toSeriesZonedDateTime

Prepends a string to a Series, where the Series is converted to a String Series if required.

Prepends a string to a Series, where the Series is converted to a String Series if required.

Value Params
string

String to be prepended.

Returns

String Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesAny

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesAny

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesBoolean

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesBoolean

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesDouble

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesDouble

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesInt

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesInt

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesLocalDate

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesLocalDate

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesLocalDateTime

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesLocalDateTime

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesLocalTime

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesLocalTime

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesString

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesString

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
def ::[T2](series: Series[T2]): DataFrame
Implicitly added by toSeriesZonedDateTime

Concatenates the Series on the left and the Series on the right hand side.

Concatenates the Series on the left and the Series on the right hand side.

Value Params
series

DataFrame.

Returns

DataFrame, where the Series series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left Series must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("prepend")
Implicitly added by toSeriesZonedDateTime

Concatenates the DataFrame on the left and the Series on the right hand side.

Concatenates the DataFrame on the left and the Series on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the left DataFrame must be included in the right Series.
  • Data on the left hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the right operand.
  • The operators | and :: are equivalent if indices on the left and right side are equal.
Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesAny

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesAny

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesBoolean

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesDouble

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesDouble

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesInt

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesInt

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesLocalDate

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesLocalDateTime

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesLocalTime

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesString

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesString

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Int): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Double): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the value of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==(v: Boolean): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the Series is not defined (null).
Value Params
v

Value to compare with.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](v: T2): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares the entries of the Series with the value v returning a boolean Series with entries

Compares the entries of the Series with the value v returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if the values of the series is not defined (null).

Value to compare with.

Value Params
v

Value.

Returns

Boolean Series.

See also
Since

0.1.0

Inherited from
Series
@targetName("equalsByRow")
def ==[T2](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesZonedDateTime

Compares two series row-by-row returning a boolean Series with entries

Compares two series row-by-row returning a boolean Series with entries

  • true if values are equal,
  • false if values are not equal,
  • null if one of the values is not defined (null) or is not in the index.
Value Params
series

Series to compare with.

Returns

Boolean Series with index of left operand.

See also
Since

0.1.0

Inherited from
Series
def agg[R](start: R, f: (R, Any) => R): R
Implicitly added by toSeriesAny

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, Boolean) => R): R
Implicitly added by toSeriesBoolean

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, Double) => R): R
Implicitly added by toSeriesDouble

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, Int) => R): R
Implicitly added by toSeriesInt

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, LocalDate) => R): R
Implicitly added by toSeriesLocalDate

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, LocalDateTime) => R): R
Implicitly added by toSeriesLocalDateTime

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, LocalTime) => R): R
Implicitly added by toSeriesLocalTime

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, String) => R): R
Implicitly added by toSeriesString

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
def agg[R](start: R, f: (R, ZonedDateTime) => R): R
Implicitly added by toSeriesZonedDateTime

Aggregates over values row-by-row.

Aggregates over values row-by-row.

Value Params
f

Aggregation function (aggregatedValue, rowValue) => newAggregatedValue.

start

Start value.

Returns

Aggregated value.

See also
Since

0.1.0

Note

The aggregation function should not depend on the traversal order.

Inherited from
Series
inline def apply(ix: Option[Int], default: => Any): Any
Implicitly added by toSeriesAny

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => Any): Any
Implicitly added by toSeriesAny

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[Any]
Implicitly added by toSeriesAny

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[Any]
Implicitly added by toSeriesAny

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[Any]
Implicitly added by toSeriesAny

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[Any]
Implicitly added by toSeriesAny

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[Any]
Implicitly added by toSeriesAny

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[Any]
Implicitly added by toSeriesAny

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => Boolean): Boolean
Implicitly added by toSeriesBoolean

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => Boolean): Boolean
Implicitly added by toSeriesBoolean

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[Boolean]
Implicitly added by toSeriesBoolean

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[Boolean]
Implicitly added by toSeriesBoolean

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[Boolean]
Implicitly added by toSeriesBoolean

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[Boolean]
Implicitly added by toSeriesBoolean

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[Boolean]
Implicitly added by toSeriesBoolean

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[Boolean]
Implicitly added by toSeriesBoolean

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => Double): Double
Implicitly added by toSeriesDouble

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => Double): Double
Implicitly added by toSeriesDouble

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[Double]
Implicitly added by toSeriesDouble

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[Double]
Implicitly added by toSeriesDouble

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[Double]
Implicitly added by toSeriesDouble

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[Double]
Implicitly added by toSeriesDouble

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[Double]
Implicitly added by toSeriesDouble

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[Double]
Implicitly added by toSeriesDouble

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => Int): Int
Implicitly added by toSeriesInt

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => Int): Int
Implicitly added by toSeriesInt

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[Int]
Implicitly added by toSeriesInt

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[Int]
Implicitly added by toSeriesInt

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[Int]
Implicitly added by toSeriesInt

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[Int]
Implicitly added by toSeriesInt

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[Int]
Implicitly added by toSeriesInt

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[Int]
Implicitly added by toSeriesInt

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => LocalDate): LocalDate
Implicitly added by toSeriesLocalDate

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => LocalDate): LocalDate
Implicitly added by toSeriesLocalDate

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[LocalDate]
Implicitly added by toSeriesLocalDate

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[LocalDate]
Implicitly added by toSeriesLocalDate

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => LocalDateTime): LocalDateTime
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => LocalDateTime): LocalDateTime
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => LocalTime): LocalTime
Implicitly added by toSeriesLocalTime

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => LocalTime): LocalTime
Implicitly added by toSeriesLocalTime

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[LocalTime]
Implicitly added by toSeriesLocalTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[LocalTime]
Implicitly added by toSeriesLocalTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => String): String
Implicitly added by toSeriesString

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => String): String
Implicitly added by toSeriesString

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[String]
Implicitly added by toSeriesString

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[String]
Implicitly added by toSeriesString

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[String]
Implicitly added by toSeriesString

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[String]
Implicitly added by toSeriesString

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[String]
Implicitly added by toSeriesString

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[String]
Implicitly added by toSeriesString

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
inline def apply(ix: Option[Int], default: => ZonedDateTime): ZonedDateTime
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Option[Int]): Option[T].

Inherited from
Series
inline def apply(ix: Int, default: => ZonedDateTime): ZonedDateTime
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix or the value default if undefined.

Returns the value at index ix or the value default if undefined.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not defined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over apply(ix: Int): Option[T].

Inherited from
Series
def apply(ix: Option[Int]): Option[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is undefined or ix not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(ix: Int): Option[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is undefined or ix not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def apply(series: Series[Boolean]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(series: Series[Boolean]): Series[T]

Slices the index by intersecting the current index with a boolean Series.

Slices the index by intersecting the current index with a boolean Series.

Value Params
series

Boolean Series as mask, where only index positions kept that are true.

Returns

Object with sliced index and order of series.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(array: Array[Int]): Series[T]

Slices the index by intersecting it with an array of index positions.

Slices the index by intersecting it with an array of index positions.

Value Params
array

Array of index positions.

Returns

Object with sliced index and order of array.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(seq: Seq[Int]): Series[T]

Slices the index by intersecting it with a sequence of index positions.

Slices the index by intersecting it with a sequence of index positions.

Value Params
seq

Sequence of index positions.

Returns

Object with sliced index and order of seq.

See also
Since

0.1.0

Inherited from
IndexOps
def apply(range: Range): Series[T]

Slices the index by intersecting it with a range.

Slices the index by intersecting it with a range.

Value Params
range

Range.

Returns

Object with sliced index with ascending order.

See also
Since

0.1.0

Inherited from
IndexOps
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesAny

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesAny

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesAny

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesAny

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[Any]
Implicitly added by toSeriesAny

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesAny

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesBoolean

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesBoolean

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesBoolean

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesBoolean

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[Boolean]
Implicitly added by toSeriesBoolean

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesBoolean

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesDouble

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesDouble

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesDouble

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesDouble

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[Double]
Implicitly added by toSeriesDouble

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesDouble

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesInt

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesInt

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesInt

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesInt

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[Int]
Implicitly added by toSeriesInt

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesInt

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesLocalDate

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesLocalDate

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesLocalDate

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesLocalDate

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesLocalDate

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesLocalDateTime

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesLocalTime

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesLocalTime

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesLocalTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesLocalTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesLocalTime

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesString

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesString

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesString

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesString

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[String]
Implicitly added by toSeriesString

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesString

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def as[T2](ix: Option[Int], default: => T2)(implicit evidence$8: Typeable[T2], evidence$9: ClassTag[T2]): T2
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Option of row index.

Returns

Value or default if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Option[Int]): Option[T2].

Inherited from
Series
def as[T2](ix: Int, default: => T2)(implicit evidence$6: Typeable[T2], evidence$7: ClassTag[T2]): T2
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix or the value default if not set.

Returns the value at index ix or the value default if not set.

Value Params
default

Default value.

ix

Row index.

Returns

Value or default if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

See also
Since

0.1.0

Note

Due to performance, this method should be preferred over as[T2](ix: Int): Option[T2].

Inherited from
Series
def as[T2](ix: Option[Int])(implicit evidence$4: Typeable[T2], evidence$5: ClassTag[T2]): Option[T2]
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Option of row index.

Returns

Value as an Option. None if ix is None, the value is not set or not in the index.

Throws
IndexBoundsException

If the value of ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def as[T2](ix: Int)(implicit evidence$3: Typeable[T2]): Option[T2]
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix as an Option, i.e. Some(value) or None.

Returns the value at index ix as an Option, i.e. Some(value) or None.

Value Params
ix

Row index.

Returns

Value as an Option. None if the value is not set or not in the index.

Throws
IndexBoundsException

If ix is not part of the base index.

SeriesCastException

If inner type is not instance of the new type T2.

See also
Since

0.1.0

Inherited from
Series
def as(name: String): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Renames the Series.

Renames the Series.

Value Params
name

New name.

Returns

Series with new name.

Since

0.1.0

Inherited from
Series
def as[T2](implicit evidence$1: Typeable[T2], evidence$2: ClassTag[T2]): Series[T2]
Implicitly added by toSeriesZonedDateTime

Casts the Series into another type.

Casts the Series into another type.

Returns

Instance of Series[T2].

Throws
SeriesCastException

If inner type does not equal the new type T2.

See also
Since

0.1.0

Note

When casting from Any to native types, consider using pd.implicits.SeriesAny.asBoolean, pd.implicits.SeriesAny.asDouble, pd.implicits.SeriesAny.asInt, etc. for more performance.

Inherited from
Series
def count: Int
Implicitly added by toSeriesAny

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesBoolean

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesDouble

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesInt

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesLocalDate

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesLocalDateTime

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesLocalTime

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesString

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def count: Int
Implicitly added by toSeriesZonedDateTime

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Counts the number of defined (non-null) elements. For Double Series, also Double.NaN is accounted as not defined.

Returns

Number of defined (non-null) elements.

See also
Since

0.1.0

Inherited from
Series
def defined: Series[Any]
Implicitly added by toSeriesAny

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[Boolean]
Implicitly added by toSeriesBoolean

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[Double]
Implicitly added by toSeriesDouble

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[Int]
Implicitly added by toSeriesInt

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[LocalDate]
Implicitly added by toSeriesLocalDate

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[LocalTime]
Implicitly added by toSeriesLocalTime

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[String]
Implicitly added by toSeriesString

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def defined: Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Keeps only defined elements and removes all index positions with undefined elements.

Keeps only defined elements and removes all index positions with undefined elements.

Returns

Equivalent Series without undefined elements and trimmed index.

Since

0.1.0

Inherited from
Series
def dense: Series[Any]
Implicitly added by toSeriesAny

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[Boolean]
Implicitly added by toSeriesBoolean

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[Double]
Implicitly added by toSeriesDouble

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[Int]
Implicitly added by toSeriesInt

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[LocalDate]
Implicitly added by toSeriesLocalDate

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[LocalTime]
Implicitly added by toSeriesLocalTime

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[String]
Implicitly added by toSeriesString

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def dense: Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Converts the Series into a Series with a uniform (dense) index, which equals the base index. Missing indices are replaced by explicit undefined values (masked). The (accessible) data is not changed.

Returns

Same Series but with an uniform index.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesAny

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesBoolean

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesDouble

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesInt

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesLocalDate

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesLocalDateTime

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesLocalTime

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesString

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def display(n: Int, colWidth: Int): Unit
Implicitly added by toSeriesZonedDateTime

Prints the Series as a table with an index column and annotated column types.

Prints the Series as a table with an index column and annotated column types.

Value Params
colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def distinct: Series[Any]
Implicitly added by toSeriesAny

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[Boolean]
Implicitly added by toSeriesBoolean

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[Double]
Implicitly added by toSeriesDouble

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[Int]
Implicitly added by toSeriesInt

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[LocalDate]
Implicitly added by toSeriesLocalDate

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[LocalTime]
Implicitly added by toSeriesLocalTime

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[String]
Implicitly added by toSeriesString

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def distinct: Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Series with unique (defined) values in the Series.

Series with unique (defined) values in the Series.

Returns

Series with distinct values.

Since

0.1.0

Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesAny

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesBoolean

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesDouble

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesInt

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalDate

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalTime

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesString

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def equalsByValue[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if two Series are equal with respect to (type and) values in all rows.

Indicates if two Series are equal with respect to (type and) values in all rows.

Value Params
series

Series (or object) to compare with.

See also
Since

0.1.0

Note
  • Comparing an undefined value (null) with undefined gives true, whereas undefined with not undefined is false.
  • Comparing Double.NaN with Double.NaN gives true, whereas Double.NaN with undefined (null) or any defined value gives false.
  • The method does not differentiate between a undefined value in the index or in the data.
  • The comparison ignores different names and indices. The index order is therefore ignored.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def exists(value: Any): Boolean
Implicitly added by toSeriesAny

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: Boolean): Boolean
Implicitly added by toSeriesBoolean

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: Double): Boolean
Implicitly added by toSeriesDouble

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: Int): Boolean
Implicitly added by toSeriesInt

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: LocalDate): Boolean
Implicitly added by toSeriesLocalDate

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: LocalDateTime): Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: LocalTime): Boolean
Implicitly added by toSeriesLocalTime

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: String): Boolean
Implicitly added by toSeriesString

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def exists(value: ZonedDateTime): Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if a value is contained in the Series.

Indicates if a value is contained in the Series.

Value Params
value

Value to search for.

Returns

Boolean flag if the the value exists.

Since

0.1.0

Inherited from
Series
def fill(value: Any): Series[Any]
Implicitly added by toSeriesAny

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2](series: Series[T2]): Series[Any]
Implicitly added by toSeriesAny

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: Boolean): Series[Boolean]
Implicitly added by toSeriesBoolean

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: Boolean](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesBoolean

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: Double): Series[Double]
Implicitly added by toSeriesDouble

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: Double](series: Series[T2]): Series[Double]
Implicitly added by toSeriesDouble

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: Int): Series[Int]
Implicitly added by toSeriesInt

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: Int](series: Series[T2]): Series[Int]
Implicitly added by toSeriesInt

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: LocalDate): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: LocalDate](series: Series[T2]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: LocalDateTime): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: LocalDateTime](series: Series[T2]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: LocalTime): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: LocalTime](series: Series[T2]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: String): Series[String]
Implicitly added by toSeriesString

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: String](series: Series[T2]): Series[String]
Implicitly added by toSeriesString

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fill(value: ZonedDateTime): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Fills undefined (null) values of a Series with respect to the current index.

Fills undefined (null) values of a Series with respect to the current index.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

Since

0.1.0

Inherited from
Series
def fill[T2 <: ZonedDateTime](series: Series[T2]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Replaces undefined (null) values by the values of series for the current index. This is also known as coalesce operation.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: Any): Series[Any]
Implicitly added by toSeriesAny

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2](series: Series[T2]): Series[Any]
Implicitly added by toSeriesAny

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: Boolean): Series[Boolean]
Implicitly added by toSeriesBoolean

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: Boolean](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesBoolean

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: Double): Series[Double]
Implicitly added by toSeriesDouble

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: Double](series: Series[T2]): Series[Double]
Implicitly added by toSeriesDouble

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: Int): Series[Int]
Implicitly added by toSeriesInt

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: Int](series: Series[T2]): Series[Int]
Implicitly added by toSeriesInt

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: LocalDate): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: LocalDate](series: Series[T2]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: LocalDateTime): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: LocalDateTime](series: Series[T2]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: LocalTime): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: LocalTime](series: Series[T2]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: String): Series[String]
Implicitly added by toSeriesString

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: String](series: Series[T2]): Series[String]
Implicitly added by toSeriesString

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def fillAll(value: ZonedDateTime): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Fills undefined (null) values of a Series with respect to the base index.

Fills undefined (null) values of a Series with respect to the base index.

Value Params
value

Value for filling undefined values.

Returns

Series with undefined values filled. The index is expanded to the uniform base index.

Since

0.1.0

Inherited from
Series
def fillAll[T2 <: ZonedDateTime](series: Series[T2]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Replaces undefined (null) values by the values of series also known as coalesce operation. The index is expanded to the uniform base index.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The index is expanded to the uniform base index.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

Since

0.1.0

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => Any): Any
Implicitly added by toSeriesAny

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[Any]
Implicitly added by toSeriesAny

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: Any): Option[Int]
Implicitly added by toSeriesAny

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: Any => Boolean): Option[Int]
Implicitly added by toSeriesAny

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesAny

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => Boolean): Boolean
Implicitly added by toSeriesBoolean

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[Boolean]
Implicitly added by toSeriesBoolean

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: Boolean): Option[Int]
Implicitly added by toSeriesBoolean

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: Boolean => Boolean): Option[Int]
Implicitly added by toSeriesBoolean

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesBoolean

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => Double): Double
Implicitly added by toSeriesDouble

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[Double]
Implicitly added by toSeriesDouble

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: Double): Option[Int]
Implicitly added by toSeriesDouble

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: Double => Boolean): Option[Int]
Implicitly added by toSeriesDouble

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesDouble

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => Int): Int
Implicitly added by toSeriesInt

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[Int]
Implicitly added by toSeriesInt

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: Int): Option[Int]
Implicitly added by toSeriesInt

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: Int => Boolean): Option[Int]
Implicitly added by toSeriesInt

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesInt

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => LocalDate): LocalDate
Implicitly added by toSeriesLocalDate

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[LocalDate]
Implicitly added by toSeriesLocalDate

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: LocalDate): Option[Int]
Implicitly added by toSeriesLocalDate

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: LocalDate => Boolean): Option[Int]
Implicitly added by toSeriesLocalDate

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesLocalDate

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => LocalDateTime): LocalDateTime
Implicitly added by toSeriesLocalDateTime

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: LocalDateTime): Option[Int]
Implicitly added by toSeriesLocalDateTime

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: LocalDateTime => Boolean): Option[Int]
Implicitly added by toSeriesLocalDateTime

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesLocalDateTime

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => LocalTime): LocalTime
Implicitly added by toSeriesLocalTime

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[LocalTime]
Implicitly added by toSeriesLocalTime

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: LocalTime): Option[Int]
Implicitly added by toSeriesLocalTime

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: LocalTime => Boolean): Option[Int]
Implicitly added by toSeriesLocalTime

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesLocalTime

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => String): String
Implicitly added by toSeriesString

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[String]
Implicitly added by toSeriesString

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: String): Option[Int]
Implicitly added by toSeriesString

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: String => Boolean): Option[Int]
Implicitly added by toSeriesString

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesString

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2, default: => ZonedDateTime): ZonedDateTime
Implicitly added by toSeriesZonedDateTime

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first[T2](series: Series[T2], value: T2): Option[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the first time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(value: ZonedDateTime): Option[Int]
Implicitly added by toSeriesZonedDateTime

Returns the index position of the first occurrence of a value or None if not found.

Returns the index position of the first occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first(f: ZonedDateTime => Boolean): Option[Int]
Implicitly added by toSeriesZonedDateTime

Returns the index position of the first element where the condition is satisfied or None if not found.

Returns the index position of the first element where the condition is satisfied or None if not found.

Value Params
f

Predicate function.

Returns

Index position or None if the predicate is never true.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def first: Option[Int]
Implicitly added by toSeriesZonedDateTime

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns the index position of the first defined (non-null) value and for boolean Series the first occurrence of the value true.

Returns

Index of first non-null entry or None if none of the entries are defined. For boolean Series, the index of the first occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def forall(f: Any => Boolean): Boolean
Implicitly added by toSeriesAny

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: Boolean => Boolean): Boolean
Implicitly added by toSeriesBoolean

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: Double => Boolean): Boolean
Implicitly added by toSeriesDouble

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: Int => Boolean): Boolean
Implicitly added by toSeriesInt

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: LocalDate => Boolean): Boolean
Implicitly added by toSeriesLocalDate

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: LocalDateTime => Boolean): Boolean
Implicitly added by toSeriesLocalDateTime

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: LocalTime => Boolean): Boolean
Implicitly added by toSeriesLocalTime

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: String => Boolean): Boolean
Implicitly added by toSeriesString

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forall(f: ZonedDateTime => Boolean): Boolean
Implicitly added by toSeriesZonedDateTime

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one (non-null) element does not satisfy the condition, true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: Any => Boolean): Boolean
Implicitly added by toSeriesAny

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: Boolean => Boolean): Boolean
Implicitly added by toSeriesBoolean

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: Double => Boolean): Boolean
Implicitly added by toSeriesDouble

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: Int => Boolean): Boolean
Implicitly added by toSeriesInt

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: LocalDate => Boolean): Boolean
Implicitly added by toSeriesLocalDate

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: LocalDateTime => Boolean): Boolean
Implicitly added by toSeriesLocalDateTime

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: LocalTime => Boolean): Boolean
Implicitly added by toSeriesLocalTime

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: String => Boolean): Boolean
Implicitly added by toSeriesString

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
def forallStrictly(f: ZonedDateTime => Boolean): Boolean
Implicitly added by toSeriesZonedDateTime

Tests whether the condition holds for all elements.

Tests whether the condition holds for all elements.

Value Params
f

Predicate function to satisfy.

Returns

False if at least one element does not satisfy the condition or is not set (null), true otherwise.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): Any
Implicitly added by toSeriesAny

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): Any
Implicitly added by toSeriesAny

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): Boolean
Implicitly added by toSeriesBoolean

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): Boolean
Implicitly added by toSeriesBoolean

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): Double
Implicitly added by toSeriesDouble

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): Double
Implicitly added by toSeriesDouble

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): Int
Implicitly added by toSeriesInt

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): Int
Implicitly added by toSeriesInt

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): LocalDate
Implicitly added by toSeriesLocalDate

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): LocalDate
Implicitly added by toSeriesLocalDate

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): LocalDateTime
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): LocalDateTime
Implicitly added by toSeriesLocalDateTime

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): LocalTime
Implicitly added by toSeriesLocalTime

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): LocalTime
Implicitly added by toSeriesLocalTime

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): String
Implicitly added by toSeriesString

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): String
Implicitly added by toSeriesString

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Option[Int]): ZonedDateTime
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Returns the value at index ix. Throws an exception if the value is not defined or ix not in the index.

Value Params
ix

Option of row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is undefined (null), ix is not in the index, ix is None or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
inline def get(ix: Int): ZonedDateTime
Implicitly added by toSeriesZonedDateTime

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Returns the value at index ix. Throws an exception if the value is not set or not in the index.

Value Params
ix

Row index.

Returns

Value for the index.

Throws
NoSuchElementException

If he value is not set (null), ix is not in the index or if ix is not part of the base index.

See also
Since

0.1.0

Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesAny

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesBoolean

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesDouble

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesInt

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalDate

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalTime

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesString

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameDefined[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Indicates if two Series have the same defined values as well as the same undefined (null) values, where the values themselves are not compared.

Value Params
series

Series to compare with.

Returns

True if the undefined and defined values are the same for both Series.

See also
Since

0.1.0

Note
  • The method does not differentiate between a missing value in the index and a undefined value (null).
  • The comparison ignores different names and indices.
  • If the two Series have different base indices the result is false.
Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesAny

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesBoolean

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesDouble

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesInt

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalDate

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesLocalTime

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesString

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasSameIndex[T2](series: Series[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Compares if the indices of two Series are equal.

Compares if the indices of two Series are equal.

Value Params
series

Series to compare with.

Returns

True if indices are equal and false otherwise.

See also
Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesAny

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesBoolean

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesDouble

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesInt

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesLocalDate

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesLocalDateTime

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesLocalTime

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesString

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def hasUndefined: Boolean
Implicitly added by toSeriesZonedDateTime

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns true if at least one of the elements is undefined or the index has less elements than the base index (slicing of the Series).

Returns

False if an element is defined for each base index element or otherwise true.

See also

isDefined for negation.

Since

0.1.0

Inherited from
Series
def head(n: Int): Series[Any]
Implicitly added by toSeriesAny

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[Boolean]
Implicitly added by toSeriesBoolean

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[Double]
Implicitly added by toSeriesDouble

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[Int]
Implicitly added by toSeriesInt

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[String]
Implicitly added by toSeriesString

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def head(n: Int): Series[T]

Head of object.

Head of object.

Value Params
n

Number of rows.

Returns

First n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def headOption: Option[Any]
Implicitly added by toSeriesAny

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[Boolean]
Implicitly added by toSeriesBoolean

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[Double]
Implicitly added by toSeriesDouble

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[Int]
Implicitly added by toSeriesInt

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[LocalDate]
Implicitly added by toSeriesLocalDate

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[LocalTime]
Implicitly added by toSeriesLocalTime

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[String]
Implicitly added by toSeriesString

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headOption: Option[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns the first value as an Option, i.e. Some(value) or None if the first value is undefined.

Returns

Value as an Option.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[Any]
Implicitly added by toSeriesAny

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[Boolean]
Implicitly added by toSeriesBoolean

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[Double]
Implicitly added by toSeriesDouble

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[Int]
Implicitly added by toSeriesInt

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[LocalDate]
Implicitly added by toSeriesLocalDate

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[LocalTime]
Implicitly added by toSeriesLocalTime

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[String]
Implicitly added by toSeriesString

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def headValue: Option[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns the first (defined) value as an Option, i.e. Some(value) or None if all values are undefined.

Returns

Value as an Option, which is None if the Series an no defined values.

Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesAny

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesBoolean

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesDouble

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesInt

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesLocalDate

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesLocalTime

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesString

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexEmpty: Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if the index is empty.

Indicates if the index is empty.

Returns

True if the index has at least one element or otherwise false.

Since

0.1.0

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesAny

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesBoolean

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesDouble

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesInt

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesLocalDate

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesLocalDateTime

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesLocalTime

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesString

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexIterator: Iterator[Int]
Implicitly added by toSeriesZonedDateTime

Iterator over the index.

Iterator over the index.

Returns

Iterator of index positions.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesAny

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesBoolean

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesDouble

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesInt

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesLocalDate

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesLocalTime

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesString

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def indexNonEmpty: Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if the index is not empty.

Indicates if the index is not empty.

Returns

True if the index has no elements or otherwise false.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesAny

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesBoolean

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesDouble

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesInt

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesLocalDate

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesLocalDateTime

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesLocalTime

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesString

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def info: String
Implicitly added by toSeriesZonedDateTime

Information string on the Series.

Information string on the Series.

Returns

Info string.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesAny

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesBoolean

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesDouble

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesInt

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesLocalDate

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesLocalDateTime

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesLocalTime

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesString

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isDefined: Boolean
Implicitly added by toSeriesZonedDateTime

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns true if the data does not contains undefined values and the index includes all index positions of the base index.

Returns

Boolean if elements are defined for all index positions.

See also

hasUndefined for negation.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesAny

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesBoolean

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesDouble

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesInt

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesLocalDate

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesLocalTime

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesString

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isEmpty: Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if a Series has no defined elements.

Indicates if a Series has no defined elements.

Returns

True if either the index is empty or all values are undefined. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesAny

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesBoolean

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesDouble

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesInt

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDate

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalTime

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesString

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isType[T2](implicit evidence$10: Typeable[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if values are instance of T2 or false otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesAny

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesBoolean

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesDouble

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesInt

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDate

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalTime

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesString

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAll[T2](implicit evidence$11: Typeable[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if values are instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

For better performance, the type check is only performed on the head of the Series except for the types Boolean, Double, Int and String. Checking the Series with regards to other types on a Series with mixed data can have misleading results. Use isTypeStrictly for testing.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesAny

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesBoolean

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesDouble

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesInt

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDate

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalTime

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesString

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeAllStrictly[T2](implicit evidence$12: Typeable[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Checks if the Series is of type T2 and all values are defined.

Checks if the Series is of type T2 and all values are defined.

Returns

True if every value is instance of T2 and all values are defined. False otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesAny

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesBoolean

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesDouble

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesInt

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDate

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalDateTime

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesLocalTime

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesString

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def isTypeStrictly[T2](implicit evidence$13: Typeable[T2]): Boolean
Implicitly added by toSeriesZonedDateTime

Checks if the Series is of type T2.

Checks if the Series is of type T2.

Returns

True if every value is instance of T2 or false otherwise.

Since

0.1.0

Note

The type check is performed on all values with causes a slower performance except for the types Any, Boolean, Double, Int and String.

Inherited from
Series
def iterator: Iterator[Option[Any]]
Implicitly added by toSeriesAny

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[Boolean]]
Implicitly added by toSeriesBoolean

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[Double]]
Implicitly added by toSeriesDouble

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[Int]]
Implicitly added by toSeriesInt

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[LocalDate]]
Implicitly added by toSeriesLocalDate

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[LocalDateTime]]
Implicitly added by toSeriesLocalDateTime

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[LocalTime]]
Implicitly added by toSeriesLocalTime

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[String]]
Implicitly added by toSeriesString

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def iterator: Iterator[Option[ZonedDateTime]]
Implicitly added by toSeriesZonedDateTime

Iterator over the values of the Series ordered by the index.

Iterator over the values of the Series ordered by the index.

Returns

Iterator of type Option[T] returning Some(value) if the value is defined and None if undefined.

Since

0.1.0

Note

For better performance consider using methods such as agg or map.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => Any): Any
Implicitly added by toSeriesAny

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[Any]
Implicitly added by toSeriesAny

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: Any): Option[Int]
Implicitly added by toSeriesAny

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesAny

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => Boolean): Boolean
Implicitly added by toSeriesBoolean

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[Boolean]
Implicitly added by toSeriesBoolean

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: Boolean): Option[Int]
Implicitly added by toSeriesBoolean

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesBoolean

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => Double): Double
Implicitly added by toSeriesDouble

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[Double]
Implicitly added by toSeriesDouble

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: Double): Option[Int]
Implicitly added by toSeriesDouble

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesDouble

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => Int): Int
Implicitly added by toSeriesInt

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[Int]
Implicitly added by toSeriesInt

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: Int): Option[Int]
Implicitly added by toSeriesInt

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesInt

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => LocalDate): LocalDate
Implicitly added by toSeriesLocalDate

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[LocalDate]
Implicitly added by toSeriesLocalDate

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: LocalDate): Option[Int]
Implicitly added by toSeriesLocalDate

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesLocalDate

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => LocalDateTime): LocalDateTime
Implicitly added by toSeriesLocalDateTime

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: LocalDateTime): Option[Int]
Implicitly added by toSeriesLocalDateTime

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesLocalDateTime

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => LocalTime): LocalTime
Implicitly added by toSeriesLocalTime

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[LocalTime]
Implicitly added by toSeriesLocalTime

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: LocalTime): Option[Int]
Implicitly added by toSeriesLocalTime

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesLocalTime

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => String): String
Implicitly added by toSeriesString

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[String]
Implicitly added by toSeriesString

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: String): Option[Int]
Implicitly added by toSeriesString

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesString

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2, default: => ZonedDateTime): ZonedDateTime
Implicitly added by toSeriesZonedDateTime

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
default

value if value is not found.

series

Series which is searched for the value.

value

Value to search for.

Returns

Value a the index position or the default value if not found.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last[T2](series: Series[T2], value: T2): Option[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Returns the value at the index position, where a value occurs the last time in another Series or None if the value is not found.

Value Params
series

Series which is searched for the value.

value

Value to search for.

Returns

Option of the value at the index position.

Throws
BaseIndexException

If the base indices are not equal.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last(value: ZonedDateTime): Option[Int]
Implicitly added by toSeriesZonedDateTime

Returns the index position of the last occurrence of a value or None if not found.

Returns the index position of the last occurrence of a value or None if not found.

Value Params
value

Value to search for.

Returns

Index position or None if not found.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def last: Option[Int]
Implicitly added by toSeriesZonedDateTime

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns the index position of the last set (non-null) value and for boolean Series the last occurrence of the value true.

Returns

Index of last non-null entry or None if none of the entries are set. For boolean Series, the index of the last occurrence of true or None if all values are false.

See also
Since

0.1.0

Note

The result depends on the index order.

Inherited from
Series
def length: Int
Implicitly added by toSeriesAny

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesBoolean

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesDouble

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesInt

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesLocalDate

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesLocalDateTime

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesLocalTime

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesString

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def length: Int
Implicitly added by toSeriesZonedDateTime

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (Any, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesAny

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: Any => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesAny

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (Boolean, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesBoolean

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: Boolean => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesBoolean

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (Double, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesDouble

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: Double => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesDouble

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (Int, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesInt

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: Int => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesInt

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (LocalDate, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesLocalDate

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: LocalDate => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesLocalDate

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (LocalDateTime, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesLocalDateTime

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: LocalDateTime => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesLocalDateTime

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (LocalTime, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesLocalTime

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: LocalTime => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesLocalTime

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (String, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesString

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: String => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesString

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
def map[T2, R](series: Series[T2], f: (ZonedDateTime, T2) => R)(implicit evidence$15: ClassTag[R]): Series[R]
Implicitly added by toSeriesZonedDateTime

Applies a row-wise function on two Series.

Applies a row-wise function on two Series.

Value Params
f

Row-wise function which takes as arguments elements of both Series. If one of the elements in a row is undefined the result in undefined.

series

Second Series.

Returns

Transformed Series of type R.

Since

0.1.0

Inherited from
Series
def map[R](f: ZonedDateTime => R)(implicit evidence$14: ClassTag[R]): Series[R]
Implicitly added by toSeriesZonedDateTime

Applies a function on each element of the Series.

Applies a function on each element of the Series.

Value Params
f

Row-wise function.

Returns

Transformed Series of type R.

See also
Since

0.1.0

Inherited from
Series
Implicitly added by toSeriesAny

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[Boolean]
Implicitly added by toSeriesBoolean

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[Double]
Implicitly added by toSeriesDouble

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
Implicitly added by toSeriesInt

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[LocalDate]
Implicitly added by toSeriesLocalDate

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[LocalTime]
Implicitly added by toSeriesLocalTime

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[String]
Implicitly added by toSeriesString

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def mutable: MutableSeries[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

A mutable copy of the Series.

A mutable copy of the Series.

Returns

A MutableSeries.

Since

0.1.0

Note
Series.mutable(1,2,3)
Series(1,2,3).mutable
  • For reference types the copy references the same objects which may cause side effects for mutable objects.
Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesAny

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesBoolean

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesDouble

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesInt

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesLocalDate

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesLocalDateTime

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesLocalTime

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesString

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def nonEmpty: Boolean
Implicitly added by toSeriesZonedDateTime

Indicates if a Series has defined elements.

Indicates if a Series has defined elements.

Returns

True if at least one defined element exists. Otherwise false is returned.

Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesAny

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesBoolean

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesDouble

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesInt

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesLocalDate

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesLocalDateTime

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesLocalTime

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesString

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRows: Int
Implicitly added by toSeriesZonedDateTime

Number of rows.

Number of rows.

Returns

Length of the Series, i.e. number of elements in the index.

See also
Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesAny

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesBoolean

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesDouble

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesInt

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesLocalDate

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesLocalDateTime

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesLocalTime

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesString

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def numRowsBase: Int
Implicitly added by toSeriesZonedDateTime

Number of rows of the underlying data vector.

Number of rows of the underlying data vector.

Returns

Number of elements in the base index.

Since

0.1.0

Inherited from
Series
def orElse(value: Any): Series[Any]
Implicitly added by toSeriesAny

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2](series: Series[T2]): Series[Any]
Implicitly added by toSeriesAny

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: Boolean): Series[Boolean]
Implicitly added by toSeriesBoolean

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: Boolean](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesBoolean

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: Double): Series[Double]
Implicitly added by toSeriesDouble

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: Double](series: Series[T2]): Series[Double]
Implicitly added by toSeriesDouble

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: Int): Series[Int]
Implicitly added by toSeriesInt

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: Int](series: Series[T2]): Series[Int]
Implicitly added by toSeriesInt

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: LocalDate): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: LocalDate](series: Series[T2]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: LocalDateTime): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: LocalDateTime](series: Series[T2]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: LocalTime): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: LocalTime](series: Series[T2]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: String): Series[String]
Implicitly added by toSeriesString

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: String](series: Series[T2]): Series[String]
Implicitly added by toSeriesString

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def orElse(value: ZonedDateTime): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Fills undefined (null) values of a Series with respect to the current index. Synonym for fill.

Value Params
value

Value for filling non-set values.

Returns

Series with undefined values filled. The original index is preserved.

See also
Since

0.1.0

Inherited from
Series
def orElse[T2 <: ZonedDateTime](series: Series[T2]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Replaces undefined (null) values by the values of series for the current index. Synonym for fill.

Value Params
series

Series with the same base index.

Returns

Series with data from the first series or if undefined from the second. The original index is not altered.

Throws
BaseIndexException

If the base index are different.

SeriesCastException

If the Series do not have the same type.

See also
Since

0.1.0

Inherited from
Series
def resetIndex: Series[Any]
Implicitly added by toSeriesAny

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[Boolean]
Implicitly added by toSeriesBoolean

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[Double]
Implicitly added by toSeriesDouble

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[Int]
Implicitly added by toSeriesInt

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[LocalDate]
Implicitly added by toSeriesLocalDate

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[LocalTime]
Implicitly added by toSeriesLocalTime

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[String]
Implicitly added by toSeriesString

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def resetIndex: Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Resets the index to a UniformIndex with index positions 0 to numRows - 1 while keeping the order of the elements. If the current index is not a uniform index, the data is copied into a new vector with the order of the current index.

Returns

Series with a UniformIndex.

See also

sortIndex for sorting the index by index positions.

Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesAny

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesBoolean

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesDouble

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesInt

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesLocalDate

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesLocalDateTime

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesLocalTime

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesString

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def show(n: Int, annotateIndex: Boolean, annotateType: Boolean, colWidth: Int): Unit
Implicitly added by toSeriesZonedDateTime

Prints the Series as a table.

Prints the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of the column.

n

The maximal numbers of rows.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesAny

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesBoolean

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesDouble

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesInt

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesLocalDate

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesLocalDateTime

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesLocalTime

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesString

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def showValues(n: Int): Unit
Implicitly added by toSeriesZonedDateTime

Prints all values of the Series.

Prints all values of the Series.

Value Params
n

The maximal numbers of rows to be printed or -1 (default) for all values.

See also
Since

0.1.0

Inherited from
Series
def sortIndex: Series[Any]
Implicitly added by toSeriesAny

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[Boolean]
Implicitly added by toSeriesBoolean

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[Double]
Implicitly added by toSeriesDouble

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[Int]
Implicitly added by toSeriesInt

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[String]
Implicitly added by toSeriesString

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sortIndex: Series[T]

Sorts the index (ascending).

Sorts the index (ascending).

Returns

Object with sorted index.

See also
Since

0.1.0

Inherited from
IndexOps
def sorted(order: Order)(implicit ordering: Ordering[Any]): Series[Any]
Implicitly added by toSeriesAny

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[Any]): Series[Any]
Implicitly added by toSeriesAny

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[Boolean]): Series[Boolean]
Implicitly added by toSeriesBoolean

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[Boolean]): Series[Boolean]
Implicitly added by toSeriesBoolean

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[Double]): Series[Double]
Implicitly added by toSeriesDouble

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[Double]): Series[Double]
Implicitly added by toSeriesDouble

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[Int]): Series[Int]
Implicitly added by toSeriesInt

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[Int]): Series[Int]
Implicitly added by toSeriesInt

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[LocalDate]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[LocalDate]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[LocalDateTime]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[LocalDateTime]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[LocalTime]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[LocalTime]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[String]): Series[String]
Implicitly added by toSeriesString

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[String]): Series[String]
Implicitly added by toSeriesString

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(order: Order)(implicit ordering: Ordering[ZonedDateTime]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sorts the Series.

Sorts the Series.

Value Params
order

Order for sorting. Possible values are Order.asc, Order.desc, Order.ascNullsFirst and Order.descNullsFirst.

ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def sorted(implicit ordering: Ordering[ZonedDateTime]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Sorts the Series in ascending order.

Sorts the Series in ascending order.

Value Params
ordering

Implicit ordering that must exist for the type T, i.e. classes must extend the trait Ordered.

Returns

Series with sorted index.

Since

0.1.0

Note
  • The sorting algorithm is stable.
  • String values are sorted lexicographically ignoring case differences (see String.compareToIgnoreCase).
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesAny

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesBoolean

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesDouble

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesInt

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesLocalDate

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesLocalDateTime

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesLocalTime

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesString

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def str: Series[String]
Implicitly added by toSeriesZonedDateTime

Converts the Series row-wise into a String Series.

Converts the Series row-wise into a String Series.

Returns

Series of type String.

Since

0.1.0

Note
  • The operation maps each element via toString to a String.
  • If the Series is of type String the Series is returned.
Inherited from
Series
def tail(n: Int): Series[Any]
Implicitly added by toSeriesAny

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[Boolean]
Implicitly added by toSeriesBoolean

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[Double]
Implicitly added by toSeriesDouble

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[Int]
Implicitly added by toSeriesInt

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[String]
Implicitly added by toSeriesString

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def tail(n: Int): Series[T]

Tail of object.

Tail of object.

Value Params
n

Number of rows.

Returns

Last n rows in index.

See also
Since

0.1.0

Inherited from
IndexOps
def toAny: Series[Any]
Implicitly added by toSeriesAny

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesBoolean

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesDouble

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesInt

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesLocalDate

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesLocalDateTime

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesLocalTime

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesString

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toAny: Series[Any]
Implicitly added by toSeriesZonedDateTime

Series as instance of Series[Any].

Series as instance of Series[Any].

Returns

Series of type Any.

Since

0.1.0

Note

Only the outer type of the Series is altered.

Inherited from
Series
def toArray: Array[Option[Any]]
Implicitly added by toSeriesAny

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[Boolean]]
Implicitly added by toSeriesBoolean

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[Double]]
Implicitly added by toSeriesDouble

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[Int]]
Implicitly added by toSeriesInt

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[LocalDate]]
Implicitly added by toSeriesLocalDate

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[LocalDateTime]]
Implicitly added by toSeriesLocalDateTime

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[LocalTime]]
Implicitly added by toSeriesLocalTime

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[String]]
Implicitly added by toSeriesString

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toArray: Array[Option[ZonedDateTime]]
Implicitly added by toSeriesZonedDateTime

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[Any]
Implicitly added by toSeriesAny

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[Boolean]
Implicitly added by toSeriesBoolean

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[Double]
Implicitly added by toSeriesDouble

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[Int]
Implicitly added by toSeriesInt

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[LocalDate]
Implicitly added by toSeriesLocalDate

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[LocalTime]
Implicitly added by toSeriesLocalTime

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[String]
Implicitly added by toSeriesString

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatArray: Array[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Copies the Series into an array.

Copies the Series into an array.

Returns

Array of type T. If T is a native type, a native array is returned.

Since

0.1.0

Inherited from
Series
def toFlatList: List[Any]
Implicitly added by toSeriesAny

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[Boolean]
Implicitly added by toSeriesBoolean

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[Double]
Implicitly added by toSeriesDouble

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[Int]
Implicitly added by toSeriesInt

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[LocalDate]
Implicitly added by toSeriesLocalDate

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[LocalTime]
Implicitly added by toSeriesLocalTime

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[String]
Implicitly added by toSeriesString

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatList: List[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[Any]
Implicitly added by toSeriesAny

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[Boolean]
Implicitly added by toSeriesBoolean

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[Double]
Implicitly added by toSeriesDouble

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[Int]
Implicitly added by toSeriesInt

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[LocalDate]
Implicitly added by toSeriesLocalDate

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[LocalTime]
Implicitly added by toSeriesLocalTime

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[String]
Implicitly added by toSeriesString

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toFlatSeq: Seq[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Copies the Series into a sequence.

Copies the Series into a sequence.

Returns

Sequence of type T.

Since

0.1.0

Inherited from
Series
def toList: List[Option[Any]]
Implicitly added by toSeriesAny

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[Boolean]]
Implicitly added by toSeriesBoolean

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[Double]]
Implicitly added by toSeriesDouble

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[Int]]
Implicitly added by toSeriesInt

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[LocalDate]]
Implicitly added by toSeriesLocalDate

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[LocalDateTime]]
Implicitly added by toSeriesLocalDateTime

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[LocalTime]]
Implicitly added by toSeriesLocalTime

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[String]]
Implicitly added by toSeriesString

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toList: List[Option[ZonedDateTime]]
Implicitly added by toSeriesZonedDateTime

Copies the Series into a List.

Copies the Series into a List.

Returns

List of type Option[T] with numRows elements.

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[Any]]
Implicitly added by toSeriesAny

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[Boolean]]
Implicitly added by toSeriesBoolean

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[Double]]
Implicitly added by toSeriesDouble

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[Int]]
Implicitly added by toSeriesInt

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[LocalDate]]
Implicitly added by toSeriesLocalDate

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[LocalDateTime]]
Implicitly added by toSeriesLocalDateTime

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[LocalTime]]
Implicitly added by toSeriesLocalTime

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[String]]
Implicitly added by toSeriesString

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toSeq: Seq[Option[ZonedDateTime]]
Implicitly added by toSeriesZonedDateTime

Copies the Series into a sequence with numRows elements.

Copies the Series into a sequence with numRows elements.

Returns

Sequence of type Option[T].

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesAny

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesBoolean

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesDouble

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesInt

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesLocalDate

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesLocalDateTime

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesLocalTime

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesString

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def toString(n: Int, colWidth: Int, annotateIndex: Boolean, annotateType: Boolean): String
Implicitly added by toSeriesZonedDateTime

Renders the Series as a table.

Renders the Series as a table.

Value Params
annotateIndex

If true, the an index column is displayed.

annotateType

If true, the type for each column in displayed.

colWidth

The width of each column.

n

The maximal numbers of rows.

Returns

Formatted table.

Since

0.1.0

Inherited from
Series
def typeString: String
Implicitly added by toSeriesAny

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesBoolean

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesDouble

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesInt

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesLocalDate

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesLocalDateTime

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesLocalTime

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesString

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def typeString: String
Implicitly added by toSeriesZonedDateTime

Returns the (internal) runtime Scala type of the Series.

Returns the (internal) runtime Scala type of the Series.

Returns

Type name such as "Int", "MyClass", "Any", "Array[Double]", "List", "Seq", etc.

Since

0.1.0

Note
  • There is no deep type reflection for 2nd order types except for Array.
  • When casting a Series to Any (via toAny), the internal type of the Series does not change.
Inherited from
Series
def union[T2](series: Series[T2]*): Series[Any]
Implicitly added by toSeriesAny

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: Boolean](series: Series[T2]*): Series[Boolean]
Implicitly added by toSeriesBoolean

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: Double](series: Series[T2]*): Series[Double]
Implicitly added by toSeriesDouble

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: Int](series: Series[T2]*): Series[Int]
Implicitly added by toSeriesInt

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: LocalDate](series: Series[T2]*): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: LocalDateTime](series: Series[T2]*): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: LocalTime](series: Series[T2]*): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: String](series: Series[T2]*): Series[String]
Implicitly added by toSeriesString

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def union[T2 <: ZonedDateTime](series: Series[T2]*): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Appends row-wise one or multiple Series. The method materializes all indices into a uniform index.

Value Params
series

Series to be appended.

Returns

Series with a uniform index.

Throws
SeriesCastException

If the underlying types are not a subtype.

Since

0.1.0

Inherited from
Series
def unique: Array[Any]
Implicitly added by toSeriesAny

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[Boolean]
Implicitly added by toSeriesBoolean

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[Double]
Implicitly added by toSeriesDouble

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[Int]
Implicitly added by toSeriesInt

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[LocalDate]
Implicitly added by toSeriesLocalDate

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[LocalTime]
Implicitly added by toSeriesLocalTime

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[String]
Implicitly added by toSeriesString

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def unique: Array[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Array with unique (defined) values in the Series.

Array with unique (defined) values in the Series.

Returns

Array with distinct values.

Since

0.1.0

Inherited from
Series
def update[T2](series: Series[T2]): Series[Any]
Implicitly added by toSeriesAny

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: Boolean](series: Series[T2]): Series[Boolean]
Implicitly added by toSeriesBoolean

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: Double](series: Series[T2]): Series[Double]
Implicitly added by toSeriesDouble

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: Int](series: Series[T2]): Series[Int]
Implicitly added by toSeriesInt

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: LocalDate](series: Series[T2]): Series[LocalDate]
Implicitly added by toSeriesLocalDate

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: LocalDateTime](series: Series[T2]): Series[LocalDateTime]
Implicitly added by toSeriesLocalDateTime

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: LocalTime](series: Series[T2]): Series[LocalTime]
Implicitly added by toSeriesLocalTime

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: String](series: Series[T2]): Series[String]
Implicitly added by toSeriesString

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
def update[T2 <: ZonedDateTime](series: Series[T2]): Series[ZonedDateTime]
Implicitly added by toSeriesZonedDateTime

Updates the series with values from the second series if the values are defined.

Updates the series with values from the second series if the values are defined.

Value Params
series

Series with the same base index.

Returns

Series with data from parameter series or if a value is undefined in series from the original series. The original index is not altered.

Since

0.1.0

Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesAny

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesAny

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesBoolean

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesBoolean

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesDouble

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesDouble

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesInt

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesInt

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesLocalDate

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesLocalDate

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesLocalDateTime

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesLocalDateTime

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesLocalTime

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesLocalTime

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesString

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesString

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(series: Series[_]): DataFrame
Implicitly added by toSeriesZonedDateTime

Concatenates Series on the left and right hand side.

Concatenates Series on the left and right hand side.

Value Params
series

Series.

Returns

DataFrame with two columns, where series is the last column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right Series must be included in the left one.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series
@targetName("concat")
def |(df: DataFrame): DataFrame
Implicitly added by toSeriesZonedDateTime

Concatenates the Series on the left and the DataFrame on the right hand side.

Concatenates the Series on the left and the DataFrame on the right hand side.

Value Params
df

DataFrame.

Returns

DataFrame, where the Series is the first column.

Throws
MergeIndexException

If indices are not compatible.

See also
Since

0.1.0

Note
  • Columns with the same name are replaced by the rightmost column.
  • The index of the right DataFrame must be included in the left Series.
  • Data on the right hand side might be copied if indices are not equivalent.
  • The resulting index is equivalent to the left operand.
Inherited from
Series

Concrete fields

val name: String