지식 창고/파이썬3 미국 노동 통계청 API 활용법 Tip [미국 노동 통계청 사이트] https://www.bls.gov/ U.S. Bureau of Labor Statistics Civilian workers' compensation costs average $43.07 per hour worked in March 2023 Employer costs for civilian workers averaged $29.70 per hour worked for wages and salaries and $13.36 for benefits in March 2023. Compensation costs were $16.54 at the 10th w www.bls.gov 미국은 정보를 꽤나 투명하고 체계적으로 관리해 연구에 활용함에 있어 많은 도움이 됩니다. 그러나 미국 노동 .. 2023. 6. 20. 미국 클러스터 데이터 가지고 오기 _1편 About Cluster Mapping US Cluster Mapping US는 미국 산업 클러스터에 대한 선별 및 지속적으로 업데이트 된 데이터를 공개로 제공하는 프로젝트이고 JSON 데이터를 반환하는 API를 구축하여 HTTP 요청을 통해 액세스할 수 있습니다. 이 프로젝트는 미국 경제 개발국과 하버드 비즈니스 스쿨의 지원을 받고 있고, 별도의 API key가 없어도 접근이 가능해 유용한 데이터들을 얻을 수 있습니다. https://clustermapping.us/ Home page | U.S. Cluster Mapping The U.S. Cluster Mapping site provides over 50 million open data records on industry clusters and re.. 2023. 4. 13. PROQUEST 파일이 너무 커서 EXPORT가 안 되는 경우, 1) proquest 서버에서 파이썬 문서를 하나 추가합니다. 2) 파일을 불러옵니다. import pandas as pd df=pd.read_csv("/home/ec2-user/SageMaker/data/데이터프레임.csv") 3) 행 수를 읽습니다. num_rows = df.shape[0] num_rows 4) 나눌 row 수를 정하고, 이에 맞춰 csv를 자릅니다. (저는 330개 열을 150으로 잘랐습니다.) df2=df[1:151] df3=df[151:] 5)csv로 저장합니다. df2.to_csv(r'/home/ec2-user/SageMaker/data/파일이름.csv', index=False) df3.to_csv(r'/home/ec2-user/SageMaker/data/파일이름.csv', i.. 2023. 3. 29. 이전 1 다음