전체 글 299

[LeetCode] 577. Employee Bonus

📢 본 포스팅에 활용되는 기본 문제 및 자료 출처는 리트코드 Problems, https://leetcode.com/problemset/all/임을 밝힙니다. ■ 문제 https://leetcode.com/problems/employee-bonus/ Employee Bonus - LeetCode Can you solve this real interview question? Employee Bonus - Table: Employee +-------------+---------+ | Column Name | Type | +-------------+---------+ | empId | int | | name | varchar | | supervisor | int | | salary | int | +------..

[LeetCode] 585. Investments in 2016

📢 본 포스팅에 활용되는 기본 문제 및 자료 출처는 리트코드 Problems, https://leetcode.com/problemset/all/임을 밝힙니다. ■ 문제 https://leetcode.com/problems/investments-in-2016/description/ Investments in 2016 - LeetCode Can you solve this real interview question? Investments in 2016 - Table: Insurance +-------------+-------+ | Column Name | Type | +-------------+-------+ | pid | int | | tiv_2015 | float | | tiv_2016 | float | ..

[LeetCode] 570. Managers with at Least 5 Direct Reports

📢 본 포스팅에 활용되는 기본 문제 및 자료 출처는 리트코드 Problems, https://leetcode.com/problemset/all/임을 밝힙니다. ■ 문제 https://leetcode.com/problems/managers-with-at-least-5-direct-reports/description/ Managers with at Least 5 Direct Reports - LeetCode Can you solve this real interview question? Managers with at Least 5 Direct Reports - Level up your coding skills and quickly land a job. This is the best place to expand..

[LeetCode] 550. Game Play Analysis IV

📢 본 포스팅에 활용되는 기본 문제 및 자료 출처는 리트코드 Problems, https://leetcode.com/problemset/all/임을 밝힙니다. ■ 문제 https://leetcode.com/problems/game-play-analysis-iv/description/ Game Play Analysis IV - LeetCode Can you solve this real interview question? Game Play Analysis IV - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next intervi..

[LeetCode] 607. Sales Person

📢 본 포스팅에 활용되는 기본 문제 및 자료 출처는 리트코드 Problems, https://leetcode.com/problemset/all/임을 밝힙니다. ■ 문제 https://leetcode.com/problems/sales-person/description/ Sales Person - LeetCode Can you solve this real interview question? Sales Person - Table: SalesPerson +-----------------+---------+ | Column Name | Type | +-----------------+---------+ | sales_id | int | | name | varchar | | salary | int | | commis..

[세미나 회고] 4월 데이터리안 Part1. 측정 가능한 마케팅 성과 분석 :고객 생애 매출(LTR) 활용법

📢 본 포스팅은 https://datarian.io/seminar 주식회사 데이터리안의 월간 세미나 '4월 | 실전! 스타트업 데이터 기반 의사결정 세미나' 참여 후 작성하였습니다. 내용은 세미나 강연 내용 및 제공 슬라이드(https://datarian.io/blog/slide-seminar-2023-apr) 를 기반으로 한 개인적인 학습 및 후기임을 밝힙니다. 강연 자료와 예시에 대한 자세한 설명은 연결된 링크를 통해 확인하실 수 있습니다. 세미나 다시보기는 https://inf.run/8PgG 를 통해 가능합니다. 측정 가능한 마케팅 성과 분석 : 고객 생애 매출(LTR) 활용법 연사 Datarian 김 민 주 1 마케팅 성과 측정에 필요한 딱 한 가지 지표 📌마케팅 캠페인의 목적 - 브랜드 알리기..

Growth 🌳/Volume 2023.04.12

[Python/ 데이터 분석] JSON 데이터

JSON 데이터 다루기 파이썬 객체 → JSON 문자열로 변환하기 JSON 문자열 → 파이썬 객체로 변환하기 여러 개의 항목을 가진 JSON 문자열 딕셔너리로 변경하기 여러 개의 JSON 객체 나타내기 JSON 문자열 데이터프레임으로 변환하기 JSON Java Script Object Notation 원래는 자바 스크립트 언어를 위해 만들어졌지만, 현재는 범용적인 포맷으로 사용되고 있다. 대부분의 프로그래밍 언어는 JSON 형태의 텍스트로 읽고 쓰기가 가능하다. ✔ 형태 JSON은 파이썬의 딕셔너리와 리스트를 섞어놓은 것 같이 중괄호 안에 키와 값이 콜론(:) 으로 연결되어 있다. { "tistory" : "chummlog" } · 키와 값에 문자열을 사용하기 위해서는 항상 큰 따옴표(")로 감싸주어야 ..

Python 2023.04.11

[Python/ 데이터 분석] API (Application Programming Interface) 사용하기

API ( Application Programming Interface) ✔ API 란? Application Programming Interface 두 프로그램이 서로 대화하기 위한 방법을 정의한 것. 예시) · 운영체제(window, Mac OS) : 문서 작성 프로그램이 디스크에 있는 파일을 읽고 쓸 수 있도록 API 제공 · 기상청 : 지역별, 실시간 날씨 정보를 얻을 수 있는 API를 제공 애플리케이션 간의 통신은 웹 기반의 API가 널리 활용된다. ☑ HTTP Hyper Text Transfer Protocol 인터넷에서 웹 페이지를 전송하는 기본 통신 방법 (통신 규약) 웹 서버 웹 데이터 요청 웹 데이터 전송 (HTML) * 웹서버, 웹 브라우저는 모두 소프트웨어 프로그램. 여기서 중요한 ..

Python 2023.04.10

[프로그래머스] 조건에 맞는 사용자와 총 거래금액 조회하기

📢 본 포스팅에 활용되는 기본 문제 및 자료 출처는 프로그래머스 코딩테스트 연습, https://school.programmers.co.kr/learn/challenges?page=1&languages=mysql%2Coracle임을 밝힙니다. · 본 문제 https://school.programmers.co.kr/learn/courses/30/lessons/164668 ■ 문제 문제 설명 다음은 중고 거래 게시판 정보를 담은 USED_GOODS_BOARD 테이블과 중고 거래 게시판 첨부파일 정보(자체수정) 작성자 정보를 담은 USED_GOODS_FILE 테이블입니다. USED_GOODS_BOARD 테이블은 다음과 같으며 BOARD_ID, WRITER_ID, TITLE, CONTENTS, PRICE, CR..