HOME > 상세정보

상세정보

Python data science handbook : essential tools for working with data

Python data science handbook : essential tools for working with data (15회 대출)

자료유형
단행본
개인저자
Vanderplas, Jacob T.
서명 / 저자사항
Python data science handbook : essential tools for working with data / Jake VanderPlas.
발행사항
Sebastopol, CA :   O'Reilly Media, Inc.,   2017.  
형태사항
xvi, 529 p. : ill. ; 24 cm.
ISBN
9781491912058 (paperback) 1491912057 (paperback)
일반주기
Includes index.  
내용주기
IPython: beyond normal Python -- Introduction to NumPy -- Data manipulation with Pandas -- Visualization with Matplotlib -- Machine learning.
일반주제명
Python (Computer program language). Data mining.
000 00000nam u2200205 a 4500
001 000045920437
005 20171113151104
008 171113s2017 caua 001 0 eng d
010 ▼a 2017385426
020 ▼a 9781491912058 (paperback)
020 ▼a 1491912057 (paperback)
035 ▼a (KERIS)REF000018433214
040 ▼a BTCTA ▼b eng ▼e rda ▼c BTCTA ▼d YDXCP ▼d OCLCQ ▼d CLE ▼d BDX ▼d JRZ ▼d OCLCF ▼d CHVBK ▼d OCLCO ▼d TMA ▼d CUY ▼d NZHMA ▼d DLC ▼d 211009
050 0 0 ▼a QA76.73.P98 ▼b V365 2016
082 0 4 ▼a 006.312 ▼2 23
084 ▼a 006.312 ▼2 DDCK
090 ▼a 006.312 ▼b V239p
100 1 ▼a Vanderplas, Jacob T.
245 1 0 ▼a Python data science handbook : ▼b essential tools for working with data / ▼c Jake VanderPlas.
260 ▼a Sebastopol, CA : ▼b O'Reilly Media, Inc., ▼c 2017.
300 ▼a xvi, 529 p. : ▼b ill. ; ▼c 24 cm.
500 ▼a Includes index.
505 0 ▼a IPython: beyond normal Python -- Introduction to NumPy -- Data manipulation with Pandas -- Visualization with Matplotlib -- Machine learning.
650 0 ▼a Python (Computer program language).
650 0 ▼a Data mining.
945 ▼a KLPA

소장정보

No. 소장처 청구기호 등록번호 도서상태 반납예정일 예약 서비스
No. 1 소장처 과학도서관/Sci-Info(2층서고)/ 청구기호 006.312 V239p 등록번호 121242308 (15회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M

컨텐츠정보

책소개

For many researchers, Python is a first-class tool mainly because of its libraries for storing, manipulating, and gaining insight from data. Several resources exist for individual pieces of this data science stack, but only with the Python Data Science Handbook do you get them all? IPython, NumPy, Pandas, Matplotlib, Scikit-Learn, and other related tools.

Working scientists and data crunchers familiar with reading and writing Python code will find this comprehensive desk reference ideal for tackling day-to-day issues: manipulating, transforming, and cleaning data; visualizing different types of data; and using data to build statistical or machine learning models. Quite simply, this is the must-have reference for scientific computing in Python.

With this handbook, you? ll learn how to use:

  • IPython and Jupyter: provide computational environments for data scientists using Python
  • NumPy: includes the ndarray for efficient storage and manipulation of dense data arrays in Python
  • Pandas: features the DataFrame for efficient storage and manipulation of labeled/columnar data in Python
  • Matplotlib: includes capabilities for a flexible range of data visualizations in Python
  • Scikit-Learn: for efficient and clean Python implementations of the most important and established machine learning algorithms


    정보제공 : Aladin

저자소개

제이크 밴더플래스(지은이)

파이썬 과학 스택의 장기 사용자이자 개발자다. 현재 워싱턴 대학교의 학제간 연구 부장으로 근무하면서 독자적인 천문학 연구를 수행하고 있으며 다양한 분야의 과학자와 함께 상담 및 컨설팅을 진행하고 있다.

정보제공 : Aladin

목차

Copyright; Table of Contents; Preface; What Is Data Science?; Who Is This Book For?; Why Python?; Python 2 Versus Python 3; Outline of This Book; Using Code Examples; Installation Considerations; Conventions Used in This Book; O''Reilly Safari; How to Contact Us; Chapter 1. IPython: Beyond Normal Python; Shell or Notebook?; Launching the IPython Shell; Launching the Jupyter Notebook; Help and Documentation in IPython; Accessing Documentation with?; Accessing Source Code with??; Exploring Modules with Tab Completion; Keyboard Shortcuts in the IPython Shell; Navigation Shortcuts.
Text Entry Shortcuts; Command History Shortcuts; Miscellaneous Shortcuts; IPython Magic Commands; Pasting Code Blocks: %paste and %cpaste; Running External Code: %run; Timing Code Execution: %timeit; Help on Magic Functions:?, %magic, and %lsmagic; Input and Output History; IPython''s In and Out Objects; Underscore Shortcuts and Previous Outputs; Suppressing Output; Related Magic Commands; IPython and Shell Commands; Quick Introduction to the Shell; Shell Commands in IPython; Passing Values to and from the Shell; Shell-Related Magic Commands; Errors and Debugging; Controlling Exceptions: %xmode.
Debugging: When Reading Tracebacks Is Not Enough; Profiling and Timing Code; Timing Code Snippets: %timeit and %time; Profiling Full Scripts: %prun; Line-by-Line Profiling with %lprun; Profiling Memory Use: %memit and %mprun; More IPython Resources; Web Resources; Books; Chapter 2. Introduction to NumPy; Understanding Data Types in Python; A Python Integer Is More Than Just an Integer; A Python List Is More Than Just a List; Fixed-Type Arrays in Python; Creating Arrays from Python Lists; Creating Arrays from Scratch; NumPy Standard Data Types; The Basics of NumPy Arrays; NumPy Array Attributes.
Array Indexing: Accessing Single Elements; Array Slicing: Accessing Subarrays; Reshaping of Arrays; Array Concatenation and Splitting; Computation on NumPy Arrays: Universal Functions; The Slowness of Loops; Introducing UFuncs; Exploring NumPy''s UFuncs; Advanced Ufunc Features; Ufuncs: Learning More; Aggregations: Min, Max, and Everything in Between; Summing the Values in an Array; Minimum and Maximum; Example: What Is the Average Height of US Presidents?; Computation on Arrays: Broadcasting; Introducing Broadcasting; Rules of Broadcasting; Broadcasting in Practice.
Comparisons, Masks, and Boolean Logic; Example: Counting Rainy Days; Comparison Operators as ufuncs; Working with Boolean Arrays; Boolean Arrays as Masks; Fancy Indexing; Exploring Fancy Indexing; Combined Indexing; Example: Selecting Random Points; Modifying Values with Fancy Indexing; Example: Binning Data; Sorting Arrays; Fast Sorting in NumPy: np.sort and np.argsort; Partial Sorts: Partitioning; Example: k-Nearest Neighbors; Structured Data: NumPy''s Structured Arrays; Creating Structured Arrays; More Advanced Compound Types; RecordArrays: Structured Arrays with a Twist; On to Pandas.

관련분야 신착자료

Dyer-Witheford, Nick (2026)
양성봉 (2025)