RISS 학술연구정보서비스

검색
다국어 입력

http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

변환된 중국어를 복사하여 사용하시면 됩니다.

예시)
  • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
  • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
닫기
    인기검색어 순위 펼치기

    RISS 인기검색어

      An introduction to statistics with Python : with applications in the life sciences

      한글로보기

      https://www.riss.kr/link?id=M14243137

      • 저자
      • 발행사항

        Switzerland : Springer, 2016

      • 발행연도

        2016

      • 작성언어

        영어

      • 주제어
      • DDC

        519.50285/536 판사항(23)

      • ISBN

        9783319283159 (hbk.)
        9783319283166 (ebk.)

      • 자료형태

        단행본(다권본)

      • 발행국(도시)

        스위스

      • 서명/저자사항

        An introduction to statistics with Python : with applications in the life sciences / [edited by] Thomas Haslwanter.

      • 형태사항

        xvii, 278 p. : ill. ; 25 cm.

      • 총서사항

        Statistics and computing ; 1431-8784 Statistics and computing.

      • 일반주기명

        Includes bibliographical references and index
        Part I: Python and Statistics -- Why Statistics? -- Python -- Data Input -- Display of Statistical Data -- Part II: Distributions and Hypothesis Tests -- Background -- Distributions of One Variable -- Hypothesis Tests -- Tests of Means of Numerical Data -- Tests on Categorical Data -- Analysis of Survival Times -- Part III: Statistical Modelling -- Linear Regression Models -- Multivariate Data Analysis -- Tests on Discrete Data -- Bayesian Statistics -- Solutions -- Glossary -- Index.

      • 소장기관
        • 강원대학교 도서관 소장기관정보
        • 국립중앙도서관 국립중앙도서관 우편복사 서비스
        • 덕성여자대학교 도서관 소장기관정보
        • 부산대학교 중앙도서관 소장기관정보
        • 서울대학교 중앙도서관 소장기관정보 Deep Link
        • 숭실대학교 도서관 소장기관정보
        • 연세대학교 학술문화처 도서관 소장기관정보 Deep Link
        • 이화여자대학교 도서관 소장기관정보 Deep Link
        • 한국외국어대학교 글로벌캠퍼스 도서관 소장기관정보
        • 한국외국어대학교 서울캠퍼스 도서관 소장기관정보
        • 한양대학교 안산캠퍼스 소장기관정보
      • 0

        상세조회
      • 0

        다운로드
      서지정보 열기
      • 내보내기
      • 내책장담기
      • 공유하기
      • 오류접수

      부가정보

      목차 (Table of Contents)

      • CONTENTS
      • Part Ⅰ Python and Statistics
      • 1 Why Statistics? = 3
      • 2 Python = 5
      • 2.1 Getting Started = 5
      • CONTENTS
      • Part Ⅰ Python and Statistics
      • 1 Why Statistics? = 3
      • 2 Python = 5
      • 2.1 Getting Started = 5
      • 2.2 Python Data Structures = 17
      • 2.3 IPython/Jupyrer : An Interactive Programming Environment = 21
      • 2.4 Developing Python Programs = 27
      • 2.5 Pandas : Data Structures for Statistics = 35
      • 2.6 Statsmodels : Tools for Statistical Modeling = 39
      • 2.7 Seaborn : Data Visualization = 40
      • 2.8 General Routines = 41
      • 2.9 Exercises = 42
      • 3 Data Input = 43
      • 3.1 Input from Text Files = 43
      • 3.2 Input from MS Excel = 47
      • 3.3 Input from Other Formats = 49
      • 4 Display of Statistical Data = 51
      • 4.1 Datatypes = 51
      • 4.2 Plotting in Python = 52
      • 4.3 Displaying Statistical Datasets = 59
      • 4.4 Exercises = 71
      • Part Ⅱ Distributions and Hypothesis Tests
      • 5 Background = 75
      • 5.1 Populations and Samples = 75
      • 5.2 Probability Distributions = 76
      • 5.3 Degrees of Freedom = 79
      • 5.4 Study Design = 79
      • 6 Distributions of One Variable = 89
      • 6.1 Characterizing a Distribution = 89
      • 6.2 Discrete Distributions = 99
      • 6.3 Normal Distribution = 104
      • 6.4 Continuous Distributions Derived from the Normal Distribution = 109
      • 6.5 Other Continuous Distributions = 115
      • 6.6 Exercises = 119
      • 7 Hypothesis Tests = 121
      • 7.1 Typical Analysis Procedure = 121
      • 7.2 Hypothesis Concept, Errors, p-Value, and Sample Size = 126
      • 7.3 Sensitivity and Specificity = 134
      • 7.4 Receiver-Operating-Characteristic(ROC) Curve = 136
      • 8 Tests of Means of Numerical Data = 139
      • 8.1 Distribution of a Sample Mean = 139
      • 8.2 Comparison of Two Groups = 142
      • 8.3 Comparison of Multiple Groups = 146
      • 8.4 Summary : Selecting the Right Test for Comparing Groups = 155
      • 8.5 Exercises = 157
      • 9 Tests on Categorical Data = 159
      • 9.1 One Proportion = 160
      • 9.2 Frequency Tables = 162
      • 9.3 Exercises = 171
      • 10 Analysis of Survival Times = 175
      • 10.1 Survival Distributions = 175
      • 10.2 Survival Probabilities = 176
      • 10.3 Comparing Survival Curves in Two Groups = 180
      • Part Ⅲ Statistical Modeling
      • 11 Linear Regression Models = 183
      • 11.1 Linear Correlation = 184
      • 11.2 General Linear Regression Model = 185
      • 11.3 Patsy : The Formula Language = 190
      • 11.4 Linear Regression Analysis with Python = 193
      • 11.5 Model Results of Linear Regression Models = 198
      • 11.6 Assumptions of Linear Regression Models = 214
      • 11.7 Interpreting the Results of Linear Regression Models = 218
      • 11.8 Bootstrapping = 219
      • 11.9 Exercises = 220
      • 12 Multivariate Data Analysis = 221
      • 12.1 Visualizing Multivariate Correlations = 221
      • 12.2 Multilinear Regression = 223
      • 13 Tests on Discrete Data = 227
      • 13.1 Comparing Groups of Ranked Data = 227
      • 13.2 Logistic Regression = 228
      • 13.3 Generalized Linear Models = 231
      • 13.4 Ordinal Logistic Regression = 232
      • 14 Bayesian Statistics = 237
      • 14.1 Bayesian vs. Frequentist Interpretation = 237
      • 14.2 The Bayesian Approach in the Age of Computers = 239
      • 14.3 Example : Analysis of the Challenger Disaster with a Markov-Chain-Monte-Carlo Simulation = 240
      • 14.4 Summing Up = 243
      • Solutions = 245
      • Glossary = 267
      • References = 273
      • Index = 275
      더보기

      온라인 도서 정보

      온라인 서점 구매

      온라인 서점 구매 정보
      서점명 서명 판매현황 종이책 전자책 구매링크
      정가 판매가(할인율) 포인트(포인트몰)
      예스24.com

      An Introduction to Statistics With Python

      품절 116,350원 104,710원 (10%)

      종이책 구매

      5,240포인트 (5%)
      알라딘

      An Introduction to Statistics with Python: With Applications in the Life Sciences (Hardcover, 2016)

      품절 130,350원 106,880원 (18%)

      종이책 구매

      5,350포인트
      • 포인트 적립은 해당 온라인 서점 회원인 경우만 해당됩니다.
      • 상기 할인율 및 적립포인트는 온라인 서점에서 제공하는 정보와 일치하지 않을 수 있습니다.
      • RISS 서비스에서는 해당 온라인 서점에서 구매한 상품에 대하여 보증하거나 별도의 책임을 지지 않습니다.

      책소개

      자료제공 : NAVER

      An Introduction to Statistics With Python (With Applications in the Life Sciences)

      This textbook provides an introduction to the free software Python and its use for statistical data analysis. It covers common statistical tests for continuous, discrete and categorical data, as well as linear regression analysis and topics from survival analysis and Bayesian statistics.

      more

      분석정보

      View

      상세정보조회

      0

      Usage

      원문다운로드

      0

      대출신청

      0

      복사신청

      0

      EDDS신청

      0

      동일 주제 내 활용도 TOP

      더보기

      이 자료와 함께 이용한 RISS 자료

      나만을 위한 추천자료

      해외이동버튼