Recent posts

판다스에서 지도그리기

less than 1 minute read

위도 경도 데이터로 지도 그리기 판다스에서 위도 경도 데이터를 세계지도에 맞춰서 그리기 위해서는 folium 라이브러리를 사용할 수 있습니다. folium 라이브러리는 지도 시각화를 위한 파이썬 라이브러리로, 지도 위에 마커, 원, 선 등을 그릴 수 있습니다. folium lin...

pandas csv file 읽을때 저장된 시간 알아내기

less than 1 minute read

pandas csv file 저장 시간 확인 pandas에서 csv 파일을 읽어올 때 해당 파일의 생성 날짜를 알고 싶으시다면, 다음과 같이 하시면 됩니다. import os.path, time file_path = '파일 경로' print("파일 생성 시간 : ", time....

google cloud bigquery

less than 1 minute read

google cloud bigquery doc link 정리 예정 python에서 동작 정리

kaggle intro sql

10 minute read

1. Getting Started With SQL and BigQuery Learn the workflow for handling big datasets with BigQuery and SQL from google.cloud import bigquery # Create ...