ALL (300) 썸네일형 리스트형 데이터 분석 용어 참고 pandas: 데이터 파일 열거나, 정렬, 검색 statsmodels 회귀분석(좀 더 복잡한 것) pingouin 통계분석(t-test, 분산분석 단순한 것) matplotlib 시각화 sklearn 머신러닝 numpy 수학 계산 [데잇걸즈] 8주차 회고(8.16~8.20) KEEP 미니프로젝트의 본격적인 시작! 우선 순위 선정과 일정 관리의 중요성을 배우고 의견 제시를 할 수 있었다 스크래핑 정말 재밌다 조금 더 하면 익숙해질 수 있을듯.. 생각보다 오래걸릴 줄 알았던 데이터 수집을 마무리 했다! 판다스 강의를 저녁마다 짬짬히 들었다 PROBLEM 팀 프로젝트 주제를 정하는데 너무 오랜 시간이 걸렸고 그 사이에 스트레스가 있었다 조장이라는 역할은 꽤 무거웠다..(🥺) 부드럽게 컨트롤 할 수 있는 리더가 되고 싶다! 아니면 리더의 서브가 되고싶다! 어떻게 해야할까? 전에 '무엇을' 해야하는지가 더 중요하다는 것을 새삼 느꼈다. 애자일 수업을 떠올릴 수 있었던 시간.. TRY 스크래핑으로 하고 싶은 아이디어들을 생각해보기 데이터 분석, 워드 클라우드, 시각화까지 열심히 하기 .. [stratascratch] Highest Number Of Orders(Python) 문제 Find the customer who has placed the highest number of orders. Output the id of the customer along with the corresponding number of orders. 가장 많은 수의 주문을 한 고객을 찾아라 고객의 ID를 해당 주문 수와 함께 출력 코드 # Import your libraries import pandas as pd # Start writing code customers.head() # customers와 orders 조인 df = pd.merge(customers, orders, how="inner", left_on="id", right_on="cust_id") # id_x 별로 count 집계 df.. [stratascratch] Salaries Differences(Python) 문제 Write a query that calculates the difference between the highest salaries found in the marketing and engineering departments. Output just the difference in salaries. 마케팅 부서와 엔지니어링 부서 사이의 가장 높은 연봉 차를 계산하여 조회하기 코드 # Import your libraries import pandas as pd # Start writing code db_employee.head() df = pd.merge(db_employee, db_dept, how="inner", left_on="department_id", right_on="id") abs(df[(df.. 이전 1 ··· 10 11 12 13 14 15 16 ··· 75 다음