분류 전체보기96 [Airflow] Core Concepts 항목별 요약 ArchitectureArchitecture Overview, WorkloadsDAGsDAG RunsTasks, [task airflow 원문 요약 : https://great-woman-hoseung.tistory.com/118]OperatorsSensorsTaskFlowExecutorAuth managerObject StorageCommunicationXComsVariablesParamsDebuggingDebugging Airflow DAGs 2024. 10. 31. [Airflow] TASK task의 종류 3가지Operator(작업자), Sensors(이벤트감지), TaskFlow-decorated(custom python function)Relationships# 방법1second_task >> [third_task, fourth_task]# 방법2first_task.set_downstream(second_task)third_task.set_upstream(second_task)- 태스크에서 태스크간 정보를 전달하는 데에는 Xcom을 사용함.Task Instances- task states의 종류는 이미지 참조. (보통 none -> scheduled -> queued -> running -> success ) - task states는 xcom을 통해 다음 method로도 넘어감Rela.. 2024. 10. 12. [ADP 2과목] 통계분석의 이해 통계자료를 획득하는 방법 총조사/ 전수조사 표본조사Simple Random Sampling: 단순랜덤 추출법, 임의의 n 개 추출Systematic Sampling: 계통 추출법 k번째마다 하나씩 뽑는 방법( k, 2k, 3k, ... )Cluster Random Sampling: 집락추출법: cluster를 구성해서 군집마다 하나씩 ( ex, 지역별 n명)Stratified Random Sampling: 층화추출법:계층에서 뽑는 방법척도명목척도어느 집단에 속하는지 카테고리 분류할 때 순서척도대상의 서열과 순서를 측정할 때 구간척도구간사이의 간격이 의미 있을 때비율척도간격에 대한 비율이 의미가 있는 자료 (절대적 기준인 0이 존재, 사칙연산 가능)확률 분포이산형 - 확률질량함수(pmf - mass)베르.. 2024. 7. 13. [LEETCODE- SQL 50] 20240713푼 문제들! 시작 시간 : 8시 34분 종료 시간 : 문제 유형 :select 1. 단순 where 문으로 일치하는 값을 찾는 단순 select 문 2. SQL에서 NULL 값에 대한 처리 SELECT name from Customer where referee_id != 2 OR referee_id IS NULL;3. or 구문을 통한 단순 필터링4. where 절의 결과 값에서 distinct 값을 뽑아내는 select 문 select distinct author_id as id from Views where viewer_id=author_id order by id;5. varchar 칼럼의 데이터 길이를 축정하는 length문을 이용한 select문select tweet_id from Tweets where L.. 2024. 7. 13. 이전 1 2 3 4 ··· 24 다음