Pandas | LeetCode 183. 주문하지 않은 고객 찾기
·
BI & Visualization/Python
Table: Customers+-------------+---------+| Column Name | Type |+-------------+---------+| id | int || name | varchar |+-------------+---------+id is the primary key (column with unique values) for this table.Each row of this table indicates the ID and name of a customer. Table: Orders+-------------+------+| Column Name | Type |+-------------+------+| id | int || ..
Pandas | LeetCode 1757. 연산자를 사용하여 조건 만족하는 행 추출하기
·
BI & Visualization/Python
Table: Products+-------------+---------+| Column Name | Type |+-------------+---------+| product_id | int || low_fats | enum || recyclable | enum |+-------------+---------+product_id is the primary key (column with unique values) for this table.low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not.recyclable is an ENUM..
Pandas | LeetCode 595. World 테이블에서 큰 나라 찾기
·
BI & Visualization/Python
Table: World+-------------+---------+| Column Name | Type |+-------------+---------+| name | varchar || continent | varchar || area | int || population | int || gdp | bigint |+-------------+---------+name is the primary key (column with unique values) for this table.Each row of this table gives information about the name of a country, the continent to which i..
캐나다 취업 | 비지니스/데이터 분석가 면접 질문 모음
·
Work/Job Interview
회사 S1패널 인터뷰 1차1. What interests you most about this role, and how did your education, skills, and experience prepare you to successfully take it on?Tip: 직무 설명과 일치하는 경험 강조, 헬스케어/분석 관련 수업, 인턴십, 프로젝트 연계Sample Answer:I’m most interested in the opportunity to apply my analytical and problem-solving skills to healthcare data that can drive meaningful outcomes. In school, I completed a specialization i..
캐나다 취업 | 데이터 분석가, 데이터 엔지니어 면접 질문 모음
·
Work/Job Interview
회사 LFinancial Analytics 팀의 리더에게 직접 리포팅하는 신규 채용 포지션으로, 팀 내 두 번째 다이렉트 리포트가 될 예정입니다.포지션 개요팀 구성: Financial Data & Insights (8명)속한 부서: Finance (총 500명 규모)업무 성격: Engineering, Finance, Operations 부서와 cross-functional하게 협업하며, 데이터 분석, 문제 해결, 대시보드 개발(Tableau), 리포팅 작업 수행사용 툴: SQL, Python, Tableau, Excel중요 역량: SQL 실력, 분석적 사고, 협업 능력(team player)인터뷰 프로세스 요약1차: 리크루터와의 30분 전화 인터뷰2차: Tech Lead와의 30분 화상 인터뷰보다 기술적..
Excel | INDIRECT 함수란?
·
BI & Visualization/Excel
엑셀에서 INDIRECT 함수는 문자열로 주어진 참조를 실제 셀 참조로 변환하는 함수입니다. 즉, 직접 셀을 지정하는 대신 텍스트 형태로 된 주소를 이용해서 값을 가져올 수 있습니다.=SUM(INDIRECT(C3&"[Workshops Scheduled]"))이 수식은 INDIRECT 함수와 SUM 함수를 함께 사용하여 특정 테이블의 열(column)을 동적으로 참조하고, 그 합계를 구하는 구조입니다.=INDIRECT(C3&"[Workshops Scheduled]")C3C3 셀에 들어 있는 테이블 이름을 가져옵니다. AsteriskCity를 가져옵니다.&"[Workshops Scheduled]"[Workshops Scheduled]라는 열(column) 이름을 연결합니다.결과적으로"AsteriskCity[..
올리브한입