반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Tkinter
- PySpark
- string
- Excel
- PostgreSQL
- 파이썬
- hive
- Apache
- Redshift
- Python
- matplotlib
- django
- GIT
- math
- array
- Google Excel
- Java
- Mac
- PANDAS
- google apps script
- gas
- dataframe
- c#
- numpy
- Github
- Kotlin
- list
- SQL
- Google Spreadsheet
Archives
- Today
- Total
목록pyspark column 삭제 (1)
달나라 노트
Python pyspark : drop (column 삭제하기)
Spark dataframe에 drop method를 적용하면 특정 column을 제거(drop)할 수 있습니다. from pyspark.sql import SparkSession from pyspark.sql.functions import col import pandas as pd spark = SparkSession.builder.getOrCreate() df_test = pd.DataFrame({ 'a': [1, 2, 3], 'b': [10.0, 3.5, 7.315], 'c': ['apple', 'banana', 'tomato'] }) df_spark = spark.createDataFrame(df_test) df_spark.show() df_spark_new = df_spark.drop(df_sp..
Python/Python pyspark
2021. 5. 31. 15:06