본문 바로가기

coding5

제품 분석가(PA)의 역할과 직무 제품 분석가(PA) 영어로는 Product Analyst의 역할과 직무에 대해 간단하게 정리해 보았습니다. 요즘 갈수록 중요해지는 직무가 바로 '데이터 관련'쪽입니다. 특히 기업이나 회사는 느낌적인 의사결정이 아닌 모든 의사결정을 데이터를 기반으로 하는 것이 기본적인 트렌드가 되었습니다. 따라서 더욱 중요하고 필요한 업무가 바로 데이터분석 관련 업무입니다. 그중에서도 '제품 분석가'와 '데이터 분석가'에 대한 애매모함이나 겹치는 부분이 분명 있습니다. 사실 명확하게 무 자르듯 그 분야를 선 긋기는 애매합니다. 하지만 최소한의 개념으로 두 직군을 구분해 볼 수 있습니다. 제품 분석가는 주로 앱 서비스 또는 웹 서비스 상에서 발생하게 되는 고객(유저)의 행동 로그 데이터를 분석하는 일을 하며, 보통의 직무는.. 2023. 5. 30.
Basic Information about Tableau Tableau versions: Public vs. Desktop Tableau Public Tableau Desktop - Free - All visualizations included - Connect to Excel and CSV files only - 15 million rows of data - Save online only - Public reports - Paid - All visualizations included - All listed data sources - Unlimited rows of data - Save locally Segmenting with dimensions Dimensions and measures affect visualizations differently; - Di.. 2023. 4. 19.
데이터 분석과정의 6단계 The Data Analysis Process 6 Steps The following steps are the data analysis process 6 steps by Google. 1. You ASKED interesting questions and defined a problem to solve through data analysis to answer that question. 관심있는 질문을 물어보고, 데이터 분석을 통해 얻고자 하는 질문에 대한 문제를 정의한다. 2. You thought deeply about what data you would need and how you would collect it in order to PREPARE for analysis. 어떠한 데이터가 필요할지에 대해 깊이 생각해보고, 데이터 분석을 위해 준비해야할 것들을 수.. 2023. 4. 12.
파이썬 while 연습문제와 해법 처음으로 조금 헷갈렸던 while 예시. 문. 숫자를 맞추는데, 기회를 3회 준다. 3회 못맞추면 끝(다시시작). 맞추면 'You win!' 메시지가 뜨도록. 3회 다 틀리면 'Sorry, you failed' 메시지가 뜨게 한다. (정답화면) secret_number = 9 guess_count = 0 guess_limit = 3 while guess_count < guess_limit: guess = int(input('Guess: ')) guess_count += 1 if guess == secret_number: print('You win!') break else: print('Sorry, you failed') 틀렸을때와 맞췄을때의 화면내용. (3회 모두 틀렸을때) Guess: 2 Guess: .. 2023. 3. 23.
How Long to Learn Python and Job Ready? How long does it take to learn Python and become job ready? Well, there is no single answer. It really depends on you, I mean it's case by case, and how much effort and commitment you want to put into Python. But I would say if somebody spends 2 hours every day consistently. After about 3 months, the person should be able to write basic python programs, but quite honestly, that doesn't get you a.. 2023. 3. 22.