본문 바로가기

ALL

(300)
[stratascratch] Churro Activity Date(Python) 문제 Find the activity date and the pe_description of facilities with the name 'STREET CHURROS' and with a score of less than 95 points. name이 'STREET CHURROS'와 score가 95미만인 activity date 와 pd_description 조회하기 코드 # Import your libraries import pandas as pd # Start writing code result = los_angeles_restaurant_health_inspections[(los_angeles_restaurant_health_inspections['facility_name'] == 'STREET ..
[데잇걸즈] 7주차 회고(8.9~8.13) KEEP 못해도 좋아할 수 있다(잘해도 증오할 수 있다...) 하루에 한 번 코딩하기 완!! 통계 수업에서 잘 이해가 되지 않는 부분은 질문했다. 자유롭게 질문할 수 있는 분위기라서 좋다. PROBLEM 부탁받은 웹사이트 틀 구성하는 일과 병행하느라 수업 듣는 컨디션이 일주일 내내 5점 이하였다 심지어 수업이 5일 내내 풀강이라 컨디션 관리 실패 통계수업 복습이 부족했다 TRY 수업시간에 이해가 되지 않는 개념이 있다면 질문하자 복습은 필수지만 통계 수업은 더 더 필수!!
[stratascratch] Customer Details(Python) 문제 Find the details of each customer regardless of whether the customer made an order. Output the customer's first name, last name, and the city along with the order details. Your output should be listing the customer's orders not necessarily listing the customers. This means that you may have duplicate rows in your results due to a customer ordering several of the same items. Sort records based..
[stratascratch] Order Details(Python) 문제 Find order details made by Jill and Eva. Consider the Jill and Eva as first names of customers. Output the order date, details and cost along with the first name. Order records based on the customer id in ascending order. Jill과 Eva가 만든 주문을 찾아서 주문 날짜, 상세 내역 및 비용을 이름과 함께 출력하기 고객 ID를 기준으로 오름차순으로 정렬 코드 # Import your libraries import pandas as pd # Start writing code result = pd.merge(customers, o..