ALL (300) 썸네일형 리스트형 [stratascratch] Largest Olympics(Python) 문제 Find the Olympics with the highest number of athletes. The Olympics game is a combination of the year and the season, and is found in the 'games' column. Output the Olympics along with the corresponding number of athletes. 선수 수가 가장 많은 올림픽 찾기. 해당 선수 수와 함께 games를 출력 코드 # Import your libraries import pandas as pd # Start writing code olympics_athletes_events.head() olympics_athletes_events[['gam.. [stratascratch] find the top 10 ranked songs in 2010(Python) 문제 Find the top 10 ranked songs in 2010 What were the top 10 ranked songs in 2010? Output the rank, group name, and song name but do not show the same song twice. Sort the result based on the year_rank in ascending order. 2010년에 top10에 들었던 노래 조회하기. 같은 노래가 중복되면 안되고, year_rank를 기준 오름차순으로 정렬하라 코드 # Import your libraries import pandas as pd # Start writing code billboard_top_100_year_end.head() bill.. [stratascratch] number of bathrooms and bedrooms(Python) 문제 Number Of Bathrooms And Bedrooms Find the average number of bathrooms and bedrooms for each city’s property types. Output the result along with the city name and the property type. 각각의 city와 property_type별로 bedrooms와 bathrooms의 평균 구하기 코드 airbnb_search_details.groupby(['city','property_type'])[['bedrooms','bathrooms']].mean() 인덱스에 있는 값을 컬럼으로 빼주기 위해서 reset_index() 사용 # Import your libraries imp.. [Git] git clone 사용법(원격 저장소 복제하기) git clone 사용법 1. 저장소 code clone 주소 카피 2. View > Command Palette 3. clone 입력 4. clone할 폴더 지정 5. 하단 우측에 알람창 > Open 6. Explorer에 clone해 온 파일들이 좌라락 생성됨 이전 1 ··· 13 14 15 16 17 18 19 ··· 75 다음