Value Yourself(293)
-
[Naver Deview 2021] ClickHouse (클릭하우스) 리뷰
아래 영상을 보고 리뷰 및 정리한 글 입니다. https://www.deview.kr/2021/sessions/462 글로벌 데이터 주권 강화 시대에 맞는 DATA CUBE 개발 ( GDPR 에 맞서는 개발 ) 발표자 : 김영진, 이모원 deview.kr https://www.deview.kr/data/deview/session/attach/4_%E1%84%80%E1%85%B3%E1%86%AF%E1%84%85%E1%85%A9%E1%84%87%E1%85%A5%E1%86%AF%20%E1%84%83%E1%85%A6%E1%84%8B%E1%85%B5%E1%84%90%E1%85%A5%20%E1%84%8C%E1%85%AE%E1%84%80%E1%85%AF%E1%86%AB%20%E1%84%80%E1%85%A1%E1%86..
2024.03.26 -
[Foundation of Data Science] 가설 검정
다룰 개념들: 모평균 μ에 대한 가설 검정 단측 검정과 양측 검정 시스템에 Scipy의 최신 버전을 설치하기 위해 명령어를 입력합니다. !pip install scipy==1.6.1 import scipy scipy.__version__ >> '1.7.3' 필요한 패키지들을 import 합니다. # import the important packagews import pandas as pd # 데이터 핸들링과 분석을 위한 라이브러리 import numpy as np # 배열에 사용되는 라이브러리 import matplotlib.pyplot as plt # 그래프와 시각화를 위한 라이브러리 import seaborn as sns # 시각화를 위한 라이브러리 %matplotlib inline import sc..
2023.11.05 -
[MGS 2023] 모던 그로스스택 컨퍼런스 후기
2023.07.26 코엑스에서 개최된, 모던 그로스스택 컨퍼런스 후기 https://www.moderngrowthstack.com/ Modern Growth Stack 2023 (MGS 2023) MGS 2023에서 앞서가는 애드테크 & 마테크 기업의 성공 사례, 인사이트, 노하우를 알아보고 지속 가능한 성장의 열쇠를 발견하세요. 최고의 그로스 스택을 한자리에서. www.moderngrowthstack.com 서비스 속에 스며든 ChatGPT by 손해인 / Head of Marketing / Upstage ChatGPT 서비스 적용을 위해 준비해야할 사항 우리 고객에게 어떤 가치를 전달할 것인가? 이 가치를 전달할 서비스의 아이디어 실현을 위해 적용될 수 있는 AI 기술이 무엇일까? AI 기술로 풀 수..
2023.08.08 -
[leetcode] 783. Minimum Distance Between BST Nodes
Given the root of a Binary Search Tree (BST), return the minimum difference between the values of any two different nodes in the tree. Example 1: Input: root = [4,2,6,1,3] Output: 1 Example 2: Input: root = [1,0,48,null,null,12,49] Output: 1 Constraints: The number of nodes in the tree is in the range [2, 100]. 0
2023.03.21 -
[leetcode] 108. Convert Sorted Array to Binary Search Tree
Given an integer array nums where the elements are sorted in ascending order, convert it to a height-balanced binary search tree. Example 1: Input: nums = [-10,-3,0,5,9] Output: [0,-3,9,-10,null,5] Explanation: [0,-10,5,null,-3,null,9] is also accepted: Example 2: Input: nums = [1,3] Output: [3,1] Explanation: [1,null,3] and [3,1] are both height-balanced BSTs. Constraints: 1
2023.03.13 -
[leetcode] 110. Balanced Binary Tree
Givin a binary tree, determine if it is height-balanced . Example 1: Input: root = [3,9,20,null,null,15,7] Output: true Example 2: Input: root = [1,2,2,3,3,null,null,4,4] Output: false Example 3: Input: root = [] Output: true Constraints: The number of nodes in the tree is in the range [0, 5000]. -104 1: return -1 return max(left, right) + 1 return check(root) != -1
2023.03.13