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 |
Tags
- sqlite
- 맛집
- 다이어트
- PyQt
- ubuntu
- 날짜
- PER
- node.js
- port
- PyQt5
- swift
- Unity
- 함수
- javascript
- Excel
- mssql
- GIT
- python
- ASP
- MySQL
- Linux
- MS-SQL
- IOS
- flutter
- pandas
- 리눅스
- 유니티
- 라즈베리파이
- urllib
- tensorflow
Archives
목록2025/04/23 (3)
아미(아름다운미소)
parquet
import pandas as pd# Parquet 파일 읽기df = pd.read_parquet('example.parquet')# 전체 데이터 출력print("전체 데이터:")print(df)# 상위 5행 출력print("\n상위 5행:")print(df.head())# 데이터 구조 확인print("\n데이터 구조:")print(df.info())# 기술 통계 정보print("\n기술 통계:")print(df.describe())
랭귀지/pandas
2025. 4. 23. 15:47
Yml
import yaml# YAML 파일 로드with open('config.yml') as f: config = yaml.safe_load(f)# 값 접근print(config['app']['name']) # "My Awesome App"print(config['database']['production']['credentials']['username']) # "admin"# 리스트 항목 접근for feature in config['app']['features']: print(feature)app: name: "My Awesome App" version: 2.3.1 features: - "authentication" - "data_export" - "notification..
카테고리 없음
2025. 4. 23. 10:21