반응형
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
- Excel
- Google Excel
- PostgreSQL
- string
- SQL
- math
- array
- gas
- PySpark
- Google Spreadsheet
- dataframe
- c#
- Tkinter
- Github
- Mac
- django
- matplotlib
- Apache
- numpy
- Python
- list
- Java
- 파이썬
- Redshift
- PANDAS
- google apps script
- GIT
- hive
- Kotlin
Archives
- Today
- Total
목록numpy arrary (1)
달나라 노트
Python Pandas : values (DataFrame을 numpy arrary 형태로 변환하기)
pandas의 values는 DataFrame에 적용하여 해당 DataFrame을 numpy arrary의 형태로 변환해줍니다. import pandas as pd dict_test = { 'col1': [1, 2, 3, 4, 5], 'col2': ['a', 'b', 'c', 'd', 'e'], 'col3': [6, 7, 8, 9, 10] } df_test = pd.DataFrame(dict_test) print(df_test) print(df_test.values) -- Result col1 col2 col3 0 1 a 6 1 2 b 7 2 3 c 8 3 4 d 9 4 5 e 10 [[1 'a' 6] [2 'b' 7] [3 'c' 8] [4 'd' 9] [5 'e' 10]] 위 예시를 보면 Test용 ..
Python/Python Pandas
2021. 6. 11. 01:29