Skip to Content
밑바닥부터 시작하는 데이터 과학 데이터 분석을 위한 파이썬 프로그래밍과 수학·통계 기초
book

밑바닥부터 시작하는 데이터 과학 데이터 분석을 위한 파이썬 프로그래밍과 수학·통계 기초

by Joel Grus, Hangyeol Kim, Seongju Ha, Eunjung Park
May 2022
Beginner to intermediate
448 pages
13h 7m
Korean
Insight
Content preview from 밑바닥부터 시작하는 데이터 과학 데이터 분석을 위한 파이썬 프로그래밍과 수학·통계 기초
from Scratch
29
󽴜󽴔
2.12
Counter
Counter
는 연속된 값을
defaultdict(int)
와 유사한 객체로 변환해 주며, 키와 값
의 빈도를 연결시켜 준다.
from collections import Counter
c = Counter([0, 1, 2, 0]) # c
결국
{0: 2, 1: 1, 2: 1}
게다가 특정 문서에서 단어의 개수를 셀 때도 유용하다.
# document
단어의
리스트임을
상기하자
.
word
_
counts = Counter(document)
Counter
객체에는 굉장히 유용하게 쓰이는
most_common
함수가 있다.
#
가장
자주
나오는
단어
10
개와
단어들의
빈도수를
출력
for word, count in word
_
counts.most
_
common(10):
print(word, count)
2.13
Set
집합(
set
)은 파이썬의 데이터 구조 중 유일한 항목의 집합을 나타내는 구조다.
집합은 중괄호를 사용해서 정의한다.
primes
_
below
_
10 = {2, 3, 5, 7}
{}
는 비어 있는 딕셔너리를 의미하기 때문에
set()
을 사용해서 비어 있는
set
생성할 수 있다.
s = set()
s.add(1) # s
이제
{ 1 }
s.add(2) # s
이제
{ 1, 2 }
s.add(2) # s ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

처음 시작하는 파이썬: 파이썬 패키지를 활용한 모던 컴퓨팅 입문

처음 시작하는 파이썬: 파이썬 패키지를 활용한 모던 컴퓨팅 입문

최길우, 빌 루바노빅

Publisher Resources

ISBN: 9788966262571