티스토리 뷰
스파크 데이터프레임에서 칼럼을 추가하거나, 한 칼럼의 값을 다른 값으로 변경 할 때는 withColumn
함수를 이용합니다.
val df = spark.read.json("/user/people.json")
scala> df.show()
+----+-------+
| age| name|
+----+-------+
|null|Michael|
| 30| Andy|
| 19| Justin|
+----+-------+
// 새로운 칼럼 추가
scala> df.withColumn("xx", $"name").show()
+----+-------+-------+
| age| name| xx|
+----+-------+-------+
|null|Michael|Michael|
| 30| Andy| Andy|
| 19| Justin| Justin|
+----+-------+-------+
칼럼을 추가할 때 when()
함수를 이용하여 조건에 따라 데이터를 변경할 수도 있습니다.
scala> df.withColumn("xx", when($"age".isNull, "KKK").otherwise($"name")).show()
+----+-------+------+
| age| name| xx|
+----+-------+------+
|null|Michael| KKK|
| 30| Andy| Andy|
| 19| Justin|Justin|
+----+-------+------+
scala> df.withColumn("xx", when($"age".isNull and $"name" === "Michael", "KKK").otherwise($"name")).show()
+----+-------+------+
| age| name| xx|
+----+-------+------+
|null|Michael| KKK|
| 30| Andy| Andy|
| 19| Justin|Justin|
+----+-------+------+
UDF 함수를 이용하여 처리할 수도 있습니다.
import org.apache.spark.sql.functions.udf
val func = udf((s:String) => if(s.isEmpty) "KKK" else s)
scala> df.select($"age", $"name", func($"name").as("xx") ).show()
+----+-------+-------+
| age| name| xx|
+----+-------+-------+
|null|Michael|Michael|
| 30| Andy| Andy|
| 19| Justin| Justin|
+----+-------+-------+
반응형
'빅데이터 > spark' 카테고리의 다른 글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 다이나믹
- 하이브
- HIVE
- S3
- SPARK
- ubuntu
- build
- error
- 알고리즘
- hbase
- 하둡
- java
- Hadoop
- nodejs
- 파이썬
- HDFS
- SQL
- Linux
- Python
- bash
- yarn
- AWS
- 정올
- 백준
- emr
- airflow
- 오류
- Tez
- oozie
- mysql
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함