DataFrame
org.apache.spark.sql.DataFrame => com.snowflake.snowpark.DataFrame
agg(exprs: Map[String, String]): DataFrame
N/A
agg(exprs: Map[String, String]): DataFrame
N/A
createTempView(viewName: String): Unit
N/A
foreach(func: ForeachFunction[T]): Unit
N/A
foreach(f: (T) ⇒ Unit): Unit
N/A
map[U](func: MapFunction[T, U], encoder: Encoder[U]): Dataset[U]
map[U]*****
map[U](func: (T) ⇒ U)(implicit arg0: Encoder[U]): Dataset[U]
map[U]*****
randomSplit(weights: Array[Double], seed: Long): Array[Dataset[T]]
randomSplit*
reduce(func: ReduceFunction[T]): T
reduce*****
reduce(func: (T, T) ⇒ T): T
reduce*****
repartition(cols: Column): DataFrame
N/A
Repartition is a Spark concept that is not needed in Snowpark
repartition(numPartitions: int): DataFrame
N/A
Repartition is a Spark concept that is not needed in Snowpark
repartition(numPartitions: int, cols: Column): DataFrame
N/A
Repartition is a Spark concept that is not needed in Snowpark
repartitionByRange(cols: Column): DataFrame
N/A
Repartition is a Spark concept that is not needed in Snowpark
repartitionByRange(numPartitions: int, cols: Column): DataFrame
N/A
Repartition is a Spark concept that is not needed in Snowpark
sample(withReplacement: Boolean, fraction: Double): Dataset[T]
sample*****
sample(withReplacement: Boolean, fraction: Double, seed: Long): Dataset[T]
sample*****
select(cols: Column*): DataFrame
select
select[U1, U2, U3, U4, U5](c1: TypedColumn[T, U1], c2: TypedColumn[T, U2], c3: TypedColumn[T, U3], c4: TypedColumn[T, U4], c5: TypedColumn[T, U5]): Dataset[(U1, U2, U3, U4, U5)]
select[U1, U2, U3, U4, U5]
select[U1, U2, U3, U4](c1: TypedColumn[T, U1], c2: TypedColumn[T, U2], c3: TypedColumn[T, U3], c4: TypedColumn[T, U4]): Dataset[(U1, U2, U3, U4)]
select[U1, U2, U3, U4]
select[U1, U2, U3](c1: TypedColumn[T, U1], c2: TypedColumn[T, U2], c3: TypedColumn[T, U3]): Dataset[(U1, U2, U3)]
select[U1, U2, U3]
select[U1, U2](c1: TypedColumn[T, U1], c2: TypedColumn[T, U2]): Dataset[(U1, U2)]
select[U1, U2]
select[U1](c1: TypedColumn[T, U1]): Dataset[U1]
select[U1]
show(numRows: Int, truncate: Int): Unit
show
show(numRows: Int, truncate: Boolean): Unit
show
sort(sortExprs: Column*): Dataset[T]
sort**
stat: DataFrameStatFunctions
stat
toDF(): DataFrame
toDF
where(conditionExpr: String): Dataset[T]
where
Last updated
Was this helpful?