User Tools

Site Tools


c:ma:2019:schedule

This is an old revision of the document!


Class page
multivariate statistics in R
network analysis in R

  • A User’s Guide to Network Analysis in R (Use R!)
  • Statistical Analysis of Network Data with R (Use R!) 2014th Edition

https://lagunita.stanford.edu
Network Analysis in R using igraph package – from Datacamp
Marketing analysis in r statistics from Datacamp

Week01 (Sep 4, 6)

ideas and concepts

Introduction to R and others

  1. Downloading and Installing R
  2. Starting R
  3. Entering Commands
  4. Exiting from R
  5. Interrupting R
  6. Viewing the Supplied Documentation
  7. Getting Help on a Function
  8. Searching the Supplied Documentation
  9. Getting Help on a Package
  10. Searching the Web for Help
  11. Finding Relevant Functions and Packages
  12. Searching the Mailing Lists
  13. Submitting Questions to the Mailing Lists

using theories 연구문제와 가설 and making hypotheses

Installing R

Assignment

Week02 (Sep 11, 13)

Concepts and ideas

Some basics

  1. Introduction
  2. Printing Something
  3. Setting Variables
  4. Listing Variables
  5. Deleting Variables
  6. Creating a Vector
  7. Computing Basic Statistics
  8. Creating Sequences
  9. Comparing Vectors
  10. Selecting Vector Elements
  11. Performing Vector Arithmetic
  12. Getting Operator Precedence Right
  13. Defining a Function
  14. Typing Less and Accomplishing More
  15. Avoiding Some Common Mistakes

Assignment

In class

small <- c(0.6739635, 1.5524619, 0.3250562, 1.2143595, 1.3107692, 2.1739663, 1.6187899, 0.8872657, 1.9170283, 0.7767406)
medium <- c(10.526448, 9.205156, 11.427756, 8.53318, 9.763317, 9.806662, 9.150245, 10.058465, 9.18233, 7.949692)
big <- c(99.83624, 100.70852, 99.73202, 98.53608, 100.74444, 98.58961, 100.46707, 99.88068, 100.46724, 100.49814)

dframe <- data.frame(small, medium, big)
fib <- c(0,1,1,2,3,5,8,13,21,34)
a1 <- c(1,1,2,3,5,8,13,21)
a2 <- c(2,4,5,3,6,9,18,25)
  1. select all elements that exceeds +-2 sd from the mean of the column, medium in dframe.
  2. choose only odd numbers from the variable fib.
  3. combine a1 and a2 into a data frame, dframe2
  4. name a1 and a2 to x and y in dfram2

Week03 (Sep 18, 20)

Activities

  • Grouping. See Group page
  • Group discussion on group works

Concepts and ideas

You should be knoweldgeable about research question and hypothesis building. However, we will be deal with the issue in the class. Please read the two and 커뮤니케이션_연구문제_제기와_가설 individually. The materials will be on quizzes.

Navigating software

  1. Introduction
  2. Getting and Setting the Working Directory
  3. Saving Your Workspace
  4. Viewing Your Command History
  5. Saving the Result of the Previous Command
  6. Displaying the Search Path
  7. Accessing the Functions in a Package
  8. Accessing Built-in Datasets
  9. Viewing the List of Installed Packages
  10. Installing Packages from CRAN
  11. Setting a Default CRAN Mirror
  12. Suppressing the Startup Message
  13. Running a Script
  14. Running a Batch Script
  15. Getting and Setting Environment Variables
  16. Locating the R Home Directory
  17. Customizing R

Input and output

  1. Introduction
  2. Entering Data from the Keyboard
  3. Printing Fewer Digits (or More Digits)
  4. Redirecting Output to a File
  5. Listing Files
  6. Dealing with “Cannot Open File” in Windows
  7. Reading Fixed-Width Records
  8. Reading Tabular Data Files
  9. Reading from CSV Files
  10. Writing to CSV Files
  11. Reading Tabular or CSV Data from the Web
  12. Reading Data from HTML Tables
  13. Reading Files with a Complex Structure
  14. Reading from MySQL Databases
  15. Saving and Transporting Objects

Assignment

Assignment for all

Group assignment

  • Hypothesis 문서의 예_1의 “제3자 효과이론과 침묵의 나선이론 연계성” 논문을 읽고 가설을 기술하시오.
  • 각 가설의 독립변인(Independent variables), 종속변인 (dependent variabless) 등을 나열하시오.
  • 이 이론에 사용된 이론은 무엇인지 기술하고 설명하시오.

Week04 (Sep 25, 27)

Class Activity

Concepts and ideas

Data Structures

  1. Introduction
  2. Appending Data to a Vector
  3. Inserting Data into a Vector
  4. Understanding the Recycling Rule
  5. Creating a Factor (Categorical Variable)
  6. Combining Multiple Vectors into One Vector and a Factor
  7. Creating a List
  8. Selecting List Elements by Position
  9. Selecting List Elements by Name
  10. Building a Name/Value Association List
  11. Removing an Element from a List
  12. Flatten a List into a Vector
  13. Removing NULL Elements from a List
  14. Removing List Elements Using a Condition
  15. Initializing a Matrix
  16. Performing Matrix Operations
  17. Giving Descriptive Names to the Rows and Columns of a Matrix
  18. Selecting One Row or Column from a Matrix
  19. Initializing a Data Frame from Column Data
  20. Initializing a Data Frame from Row Data
  21. Appending Rows to a Data Frame
  22. Preallocating a Data Frame
  23. Selecting Data Frame Columns by Position
  24. Selecting Data Frame Columns by Name
  25. Selecting Rows and Columns More Easily
  26. Changing the Names of Data Frame Columns
  27. Editing a Data Frame
  28. Removing NAs from a Data Frame
  29. Excluding Columns by Name
  30. Combining Two Data Frames
  31. Merging Data Frames by Common Column
  32. Accessing Data Frame Contents More Easily
  33. Converting One Atomic Value into Another
  34. Converting One Structured Data Type into Another

Assignment

  • 가설 연습 in ajoubb

Week05 (Oct 2, 4)

ideas and concepts

Assignment

Week06 (Oct 9, 11)

ideas and concepts

Assignment

Week07 (Oct 16, 18)

ideas and concepts

Assignment

Week08 (Oct 23, 25)

Mid-term period

Week09 (Oct 30, Nov 1)

ideas and concepts

Assignment

Week10 (Nov 6, 8)

ideas and concepts

Assignment

Week11 (Nov 13, 15)

ideas and concepts

Assignment

Week12 (Nov 20, 22)

ideas and concepts

Assignment

Week13 (Nov 27, 29)

ideas and concepts

Assignment

Week14 (Dec 4, 6)

Group Presentation

Week15 (Dec 11, 13)

Group Presentation

Week16 (June 18, 20)

Final-term

c/ma/2019/schedule.1568940691.txt.gz · Last modified: 2019/09/20 09:51 by hkimscil

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki