목록2024/10 (82)
rubus0304 님의 블로그
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
https://leetcode.com/problems/average-selling-price/description/ 92. Average Selling Price Write a solution to find the average selling price for each product. average_price should be rounded to 2 decimal places. If a product does not have any sold units, its average selling price is assumed to be 0.Return the result table in any order. (오답)select u.product_id, avg(price) average_pricef..
https://yozm.wishket.com/magazine/detail/1967/ 사용자 데이터를 효과적으로 분석하는 법 | 요즘IT사용성 평가나 설문 조사 그리고 인터뷰와 같은 사용자 조사는 고객 관점에서의 사업 기회 발굴과 디자인 개선에 대한 인사이트를 제공해 줍니다. 그렇지만 단순히 사용자 조사로 수집된 데이yozm.wishket.com 요약 :정량적 경험 데이터 분석 - 통계분석 1)기술통계 -수집된 데이터의 특성을 파악하는데 활용. (빈도, 평균)범주형 데이터: 선호하는 디자인 타입이나 과제 성공여부 등의 데이터를 분석해서 통계값 구할 수 있음-파이차트, 누적 막대그래프: 주로 백분율로 분석해 사용자의 행동이 어느 영역에 많이 분포되는지 확인: 원그래프나 누적 막대그래프로 시각화해 경향성 한..
https://leetcode.com/problems/not-boring-movies/description/ 91. Not Boring Movies Write a solution to report the movies with an odd-numbered ID and a description that is not "boring".Return the result table ordered by rating in descending order. select *from Cinemawhere mod(id,2)=1 and description 'boring'order by rating desc
보호되어 있는 글입니다.
[Python] 예제로 익히는 Python - 4회차 [Python] 예제로 익히는 Python - 4회차 | Notion[강의자료 PDF]teamsparta.notion.site 6개 과제 31일까지4문제 강의자료 보고 풀 수 있음 이상치 식별 Z Score / IQR 제일 많이 함Isolation Forest/ DB Scan 개념만 익히기 과제 [4기] 라이브러리 개인 과제 [4기] 라이브러리 개인 과제 | Notion개인 과제 안내teamsparta.notion.site
90. Cofirmation Ratehttps://leetcode.com/problems/confirmation-rate/ The confirmation rate of a user is the number of 'confirmed' messages divided by the total number of requested confirmation messages. The confirmation rate of a user that did not request any confirmation messages is 0. Round the confirmation rate to two decimal places.Write a solution to find the confirmation rate of each user...
[4기] QCC - 1회차 [4기] QCC - 1회차 | Notion셋팅 안내teamsparta.notion.site 1문제 Sales_SalesOrderDetail은 SalesOrderID를 통해 Sales_SalesOrderHeader와 외래 키 관계를 가집니다. 각 판매 주문 세부 정보는 특정 판매 주문 ID에 속합니다.Sales_SalesOrderHeader는 CustomerID를 통해 Sales_Customer 테이블과 외래 키 관계를 가집니다. 각 판매 주문 ID는 특정 고객과 연결되어 있습니다.Sales_Customer는 PersonID를 통해 Person_Person 테이블(BusinessEntityID)과 외래 키 관계를 가집니다. 이는 각 고객이 하나의 개인 정보와 연결됨을 의미합니다...