본문 바로가기

Programming84

[Google Analytics Professional Program] Databases 1. 데이터가 필요할 때 좋은 사이트 - 오픈 데이터 활용하는 링크 1) Google Cloud public datasets: https://cloud.google.com/datasets?hl=ko 데이터 세트 및 사전 빌드된 솔루션 | Google Cloud Google 소유의 데이터, 공개 데이터 또는 업종별 데이터로 분석 및 AI 이니셔티브를 보강할 때 데이터 애셋의 가치를 높이세요. cloud.google.com 2) Dataset Search https://datasetsearch.research.google.com/ Dataset Search datasetsearch.research.google.com 3) Kaggle https://www.kaggle.com/datasets Find Open.. 2023. 3. 18.
[Google Analytics Professional Certificate Program] Course 3까지 끝낸 후기 나는 회사에서 2년간 엑셀을 사용한 경험이 있는 사람으로서, 사실 첫 3코스는 무지막지하게 쉬웠다! 이제 4~6코스를 시작해보겠다. 2023. 3. 17.
[Google Analytics Professional Certificate Program] 시작~ 오늘은 Google Analytics Program을 시작하는 날이다. 총 8개의 코스로 이루어져 있고 미국에서는 많은 사람들이 데이터 분석 입문으로 자격증 의 형식으로 딴다. https://grow.google/certificates/data-analytics/#?modal_active=none Google Data Analytics Certificate The Data Analytics Certification, developed by Google, can help you navigate tools and platforms to process, analyze, and visualize data. grow.google 코스 1에서는 아래와 같은 맛보기 형식의 내용을 배우게 된다. 1. 데이터 분석의 경.. 2023. 3. 13.
[python] 클래스 연습 python 1. class class Person: def greeting(self): print("hello") 클래스 사용 시, james= Person() class Person: def greeting(self): print("hello") # 클래스 사용 시, james = Person() # 매서드 호출 시, 인스턴스를 통해 호출 함 james.greeting() 2023. 3. 11.