0% found this document useful (0 votes)
52 views

Indexing and Slicing Data Frames

This document is a tutorial script on indexing and slicing data frames in R. It will cover extracting rows and columns from a data frame, creating subsets, and retrieving data using double square brackets. The tutorial will use the CaptaincyData.csv data frame and mydataframe.R script, which should be downloaded. The goal is to learn how to manipulate parts of data frames.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views

Indexing and Slicing Data Frames

This document is a tutorial script on indexing and slicing data frames in R. It will cover extracting rows and columns from a data frame, creating subsets, and retrieving data using double square brackets. The tutorial will use the CaptaincyData.csv data frame and mydataframe.R script, which should be downloaded. The goal is to learn how to manipulate parts of data frames.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 28

Indexing and Slicing Data

Frames

Spoken Tutorial Project


http://spoken-tutorial.org
National Mission on Education through ICT
http://sakshat.ac.in
Script: Shaik Sameer
Narration: Sudhakar Kumar
IIT Bombay
10 November 2018
Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames
Learning Objectives

We will learn how to:

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Learning Objectives

We will learn how to:


I Extract rows or columns from a

data frame

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Learning Objectives

We will learn how to:


I Extract rows or columns from a

data frame
I Create a subset from a data frame

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Learning Objectives

We will learn how to:


I Extract rows or columns from a

data frame
I Create a subset from a data frame

I Retrieve data using double square

brackets

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Pre-requisites

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Pre-requisites

I Data frames in R

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Pre-requisites

I Data frames in R
I R script in RStudio

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Pre-requisites

I Data frames in R
I R script in RStudio
I How to set Working directory in
RStudio

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Pre-requisites

I Data frames in R
I R script in RStudio
I How to set Working directory in
RStudio
Please locate the relevant tutorials on
https://spoken-tutorial.org/

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


System Specifications

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


System Specifications

I Ubuntu Linux OS v 16.04

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


System Specifications

I Ubuntu Linux OS v 16.04


I R v 3.2.3

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


System Specifications

I Ubuntu Linux OS v 16.04


I R v 3.2.3
I RStudio v 1.1.456

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


System Specifications

I Ubuntu Linux OS v 16.04


I R v 3.2.3
I RStudio v 1.1.456
R version 3.2.0 or higher

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Download Files

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Download Files

I We will use the data frame


CaptaincyData.csv and a script file
mydataframe.R

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Download Files

I We will use the data frame


CaptaincyData.csv and a script file
mydataframe.R
I Download these files from the
Code files link of this tutorial

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Summary

We have learnt how to:


I Extract rows or columns from a

data frame
I Create a subset from a data frame

I Retrieve data using double square

brackets

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Assignment

1. Create a subset from captaincy


data frame with the captains who
have played > 20 matches and lost
< 14 matches

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


About the Spoken Tutorial Project
I Watch the video available at
http://spoken-tutorial.org
/What is a Spoken Tutorial
I It summarises the Spoken Tutorial
project

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


About the Spoken Tutorial Project
I Watch the video available at
http://spoken-tutorial.org
/What is a Spoken Tutorial
I It summarises the Spoken Tutorial
project
I If you do not have good
bandwidth, you can download and
watch it
Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames
Spoken Tutorial Workshops

The Spoken Tutorial Project Team


I Conducts workshops using spoken

tutorials
I Gives certificates to those who

pass an online test


I For more details, please write to

[email protected]

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames


Forum to answer questions
I Do you have questions in THIS
Spoken Tutorial?
I Choose the minute and second
where you have the question
I Explain your question briefly
I Someone from the FOSSEE team
will answer them. Please visit

http://forums.spoken-tutorial.org/
Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames
Forum to answer questions
I Questions not related to the
Spoken Tutorial?
I Do you have general / technical
questions on the Software?
I Please visit the FOSSEE Forum
http://forums.fossee.in/
I Choose the Software and post
your question
Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames
Textbook Companion
I The FOSSEE team coordinates
coding of solved examples of
popular books
I We give honorarium and
certificates to those who do this
For more details, please visit these
sites:
https://r.fossee.in/
https://fossee.in/
Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames
Acknowledgement
I Spoken Tutorial Project is a part
of the Talk to a Teacher project
I It is supported by the National
Mission on Education through
ICT, MHRD, Government of India
I More information on this Mission
is available at:
http://spoken-tutorial.
org/NMEICT-Intro
Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames
Thank You

I The script for this tutorial was


contributed by Shaik Sameer
(FOSSEE Fellow 2018)
I The video has been created by
Sudhakar Kumar, IIT Bombay

Script: Shaik S, Narration: Sudhakar K Indexing and Slicing Data Frames

You might also like