DATA(8)
-
An Introduction to Statistical Learning, 데이터 분석, R Code, pdf
An Introduction to Statistical Learning site http://www-bcf.usc.edu/~gareth/ISL/ Introduction to Statistical Learning-Youtube http://youtu.be/St2-97n7atk An Introduction to Statistical Learning 목차 Preface vii 1 Introduction 1 2 Statistical Learning 15 2.1 What Is Statistical Learning? . . . . . . . . . . . . . . . . . 15 2.1.1 Why Estimate f? . . . . . . . . . . . . . . . . . . . . 17 2.1.2 How ..
-
Intent(인텐트)
인텐트 인텐트란 애플리케이션의 컴포넌트, 구체적으로 말하자면 액티비티, 서비스, 브로드캐스트리시버에게 작업을 요청하기 위해 필요한 데이터를 전달해주는 메시지에 해당하는 '전달 객체'로 보통 '인텐트 객체'라고 합니다. 인텐트 생성 명시적 인텐트 (Explicit Intent)호출 대상 컴포넌트의 이름이 명시되어 있는 인텐트 즉, 어떤 것을 호출해야 할지 명시되어 있는 인텐트 new Intent(Context packageContext, class cls); ex) new Intent(this,SampleActivity.class)암시적 인텐트 (Implicit Intent)호출 대상 컴포넌트가 정확히 정해진 것이 아니라, 호출 대상 컴포넌트의 특성만 나열되어 있는 인텐트 new Intent(String ..