SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Intro Workshop
Saad Chahine, PhD.
May 26, 2014
What is R?
“R is a language and environment for statistical computing and
graphics… similar to the S language and environment which was
developed at Bell Laboratories… by John Chambers and colleagues…”
“R is available as Free Software under the terms of the Free Software
Foundation's GNU General Public Licenses in source code form. It
compiles and runs on a wide variety of UNIX platforms and similar
systems (including FreeBSD and Linux), Windows and MacOS.”
http://www.r-project.org/
Getting
Started
• Download and
launch R
• Type help()
press enter
Calculator
‘>’ is the prompt line
Try: 3+5
Try: 3-5
Try: 3/5
Try: 3*5
Try: sqrt(5)
Try: sum (1,3,5)
Logic
‘>’ is the prompt line
Try: 3<5
Try: 3>5
Try: 3+5==8
Try: 3+5==9
Variables
‘<-’ assigns a value
Try: x<-24
Try: x
Try: x/2
Try: x
Try: x<-“hello world”
Try: x
Try: x<-T
Try: x
Menu Bar
• Saving your documents
• Working directories getwd()
• Saving workspace
Help Example
Try: help(ave)
Try: help(mean)
Try: help(mode)
Try: help(median)
Try: help(sd)
Try: help(t.test)
Try: help(anova)
Try: example(ave)
Try: example(mean)
Try: example(mode)
Try: example(median)
Try: example(sd)
Try: example(t.test)
Try: example(anova)
Vectors
Try: c(3,5,7)
Try: c(‘s’,’a’,’a’,’d’)
Try: 3:7
Try: seq(3,7)
Try: seq(3,7,0.25)
Try: 7:3
Try: name <-c(‘s’,’a’,’a’,’d’)’
Try: name [3]
Try: name [3] <- ‘d’
Try: name [4] <- ‘e’
Try: name
Vectors Names
Try: ranks <- 1:3
Try: names (ranks) <- c(“1st”,”2nd”,”3rd”, )
Try: ranks
Try: ranks [first]
Try: ranks [3] <-4
Try: scoRes <- c(450,578,502)
Try: barplot(scoRes)
Try: names(scoRes) <- c(“Bob”, “Marry”, “Jane”)
Try: barplot (1:200)
Matrices
Try: matrix(0,6,7)
Try: a<-1:42
Try: print (a)
Try: matrix(a,6,7)
Try: seats <- 1:20
Try: dim(seats) <- c(2,10)
Try: print (seats)
Access Values
Try: print(seats)
Try: seats[2,3]
Try: seats[2,]
Try: seats[1,]
Try: seats[,3]
Try: seats[,5:9]
Matrix
Try: MATD <-matrix(1:6,2)
Try: MATE <-matrix(c(rep(1,3), rep(2,3)), 2, byrow=T)
Try: MATE+MATD
Try: MATD+10
Try: MATD-10
Try: MATD+10
Try: MATD
Try: MATE-MATE
Try: MATD-MATE
Try: solve(MATD[,2:3])
Try: t(MATE)
Try: MATD %*% t(MATE)
Try: MATD*100
Try: MATD/MATE
Factors
Try: data = c(1,2,2,3,1,3,2,2,3,3,3,2,2,1,2)
Try: fdata=factor(data)
Try: fdata
Try: mean(data)
Import Data CSV
1. Find the file path
2. mydata <-read.table(”filepath”,
header=T, sep=“,”)
3. mydata <-read.table(”filepath”,
header=T, sep=“t”)
4. For fixed width use read.fwf
Import Data SPSS
1. Install.packages(“me
misc”)
2. library(“memisc”)
3. mydata <-
as.data.set(spss.syst
em.file('/CSSE R
Workshop/GEDU6100
dataset.sav'))
4. mydata
data.frame str
str(mydata)
data.frame summary
summary(mydata)
data.frame fix
fix(mydata)
Ways of calling your data
- Mean (mydata$MATH)
- With(mydata,
mean(MATH))
- t.test(MATH~GENDER,
data=mydata)
data.frame attach
attach(mydata)
mean(MATH)
t.test(MATH~GENDER)
Export
write.table(mydata,
“filepath/mydata.txt”)
Note: for export to exl, SAS, SPSS you may
need to use foreign package.
On your own
Try: data()
- Find a data set
and str,
summary & one
statistical
application
Useful Packages
foreign
Hmisc
prettyR
psych
ggplot2
summary(mydata
describe(mydata)
freq(mydata)
rcorr(cbind (v1,v2,v3,v4)
cor.test (v1,v2, use=“pairwise”)
Try this last one…
Try: contour(volcano)
Try: persp(volcano, expand=0.2)
Online resources
http://tryr.codeschool.com
http://www.ats.ucla.edu/stat/r/faq/inputdata_R.htm
http://www.r-project.org/
https://www.stat.auckland.ac.nz/~paul/RGraphics/rgraphics.html
Good Luck!
saad.chahine@msvu.ca

Weitere ähnliche Inhalte

Was ist angesagt?

Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?Jesper Kamstrup Linnet
 
ぐだ生 Java入門第一回(equals hash code_tostring)
ぐだ生 Java入門第一回(equals hash code_tostring)ぐだ生 Java入門第一回(equals hash code_tostring)
ぐだ生 Java入門第一回(equals hash code_tostring)Makoto Yamazaki
 
The Ring programming language version 1.4 book - Part 20 of 30
The Ring programming language version 1.4 book - Part 20 of 30The Ring programming language version 1.4 book - Part 20 of 30
The Ring programming language version 1.4 book - Part 20 of 30Mahmoud Samir Fayed
 
Python dictionary
Python dictionaryPython dictionary
Python dictionaryeman lotfy
 
30 分鐘學會實作 Python Feature Selection
30 分鐘學會實作 Python Feature Selection30 分鐘學會實作 Python Feature Selection
30 分鐘學會實作 Python Feature SelectionJames Huang
 
The Ring programming language version 1.3 book - Part 56 of 88
The Ring programming language version 1.3 book - Part 56 of 88The Ring programming language version 1.3 book - Part 56 of 88
The Ring programming language version 1.3 book - Part 56 of 88Mahmoud Samir Fayed
 
CS323: Sort - Comparison-based
CS323: Sort - Comparison-basedCS323: Sort - Comparison-based
CS323: Sort - Comparison-basedJinho Choi
 

Was ist angesagt? (8)

Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?
 
ぐだ生 Java入門第一回(equals hash code_tostring)
ぐだ生 Java入門第一回(equals hash code_tostring)ぐだ生 Java入門第一回(equals hash code_tostring)
ぐだ生 Java入門第一回(equals hash code_tostring)
 
The Ring programming language version 1.4 book - Part 20 of 30
The Ring programming language version 1.4 book - Part 20 of 30The Ring programming language version 1.4 book - Part 20 of 30
The Ring programming language version 1.4 book - Part 20 of 30
 
Scala - en bedre Java?
Scala - en bedre Java?Scala - en bedre Java?
Scala - en bedre Java?
 
Python dictionary
Python dictionaryPython dictionary
Python dictionary
 
30 分鐘學會實作 Python Feature Selection
30 分鐘學會實作 Python Feature Selection30 分鐘學會實作 Python Feature Selection
30 分鐘學會實作 Python Feature Selection
 
The Ring programming language version 1.3 book - Part 56 of 88
The Ring programming language version 1.3 book - Part 56 of 88The Ring programming language version 1.3 book - Part 56 of 88
The Ring programming language version 1.3 book - Part 56 of 88
 
CS323: Sort - Comparison-based
CS323: Sort - Comparison-basedCS323: Sort - Comparison-based
CS323: Sort - Comparison-based
 

Andere mochten auch

How to get started with R programming
How to get started with R programmingHow to get started with R programming
How to get started with R programmingRamon Salazar
 
Introduction to R for Data Science :: Session 2
Introduction to R for Data Science :: Session 2Introduction to R for Data Science :: Session 2
Introduction to R for Data Science :: Session 2Goran S. Milovanovic
 
An Interactive Introduction To R (Programming Language For Statistics)
An Interactive Introduction To R (Programming Language For Statistics)An Interactive Introduction To R (Programming Language For Statistics)
An Interactive Introduction To R (Programming Language For Statistics)Dataspora
 
R programming groundup-basic-section-i
R programming groundup-basic-section-iR programming groundup-basic-section-i
R programming groundup-basic-section-iDr. Awase Khirni Syed
 
R programming language
R programming languageR programming language
R programming languageKeerti Verma
 
Introduction to R for Data Science :: Session 1
Introduction to R for Data Science :: Session 1Introduction to R for Data Science :: Session 1
Introduction to R for Data Science :: Session 1Goran S. Milovanovic
 
Introduction to R Short course Fall 2016
Introduction to R Short course Fall 2016Introduction to R Short course Fall 2016
Introduction to R Short course Fall 2016Spencer Fox
 
H2O World - Intro to R, Python, and Flow - Amy Wang
H2O World - Intro to R, Python, and Flow - Amy WangH2O World - Intro to R, Python, and Flow - Amy Wang
H2O World - Intro to R, Python, and Flow - Amy WangSri Ambati
 
Introduction to R for Data Science :: Session 3
Introduction to R for Data Science :: Session 3Introduction to R for Data Science :: Session 3
Introduction to R for Data Science :: Session 3Goran S. Milovanovic
 
R language tutorial
R language tutorialR language tutorial
R language tutorialDavid Chiu
 

Andere mochten auch (13)

How to get started with R programming
How to get started with R programmingHow to get started with R programming
How to get started with R programming
 
Introduction to R for Data Science :: Session 2
Introduction to R for Data Science :: Session 2Introduction to R for Data Science :: Session 2
Introduction to R for Data Science :: Session 2
 
An Interactive Introduction To R (Programming Language For Statistics)
An Interactive Introduction To R (Programming Language For Statistics)An Interactive Introduction To R (Programming Language For Statistics)
An Interactive Introduction To R (Programming Language For Statistics)
 
R programming groundup-basic-section-i
R programming groundup-basic-section-iR programming groundup-basic-section-i
R programming groundup-basic-section-i
 
R programming language
R programming languageR programming language
R programming language
 
Executive Intro to R
Executive Intro to RExecutive Intro to R
Executive Intro to R
 
Introduction to R for Data Science :: Session 1
Introduction to R for Data Science :: Session 1Introduction to R for Data Science :: Session 1
Introduction to R for Data Science :: Session 1
 
Introduction to R Short course Fall 2016
Introduction to R Short course Fall 2016Introduction to R Short course Fall 2016
Introduction to R Short course Fall 2016
 
H2O World - Intro to R, Python, and Flow - Amy Wang
H2O World - Intro to R, Python, and Flow - Amy WangH2O World - Intro to R, Python, and Flow - Amy Wang
H2O World - Intro to R, Python, and Flow - Amy Wang
 
Introduction to R for Data Science :: Session 3
Introduction to R for Data Science :: Session 3Introduction to R for Data Science :: Session 3
Introduction to R for Data Science :: Session 3
 
Class ppt intro to r
Class ppt intro to rClass ppt intro to r
Class ppt intro to r
 
R programming
R programmingR programming
R programming
 
R language tutorial
R language tutorialR language tutorial
R language tutorial
 

Ähnlich wie R Intro Workshop

Database queries
Database queriesDatabase queries
Database querieslaiba29012
 
Four Languages From Forty Years Ago
Four Languages From Forty Years AgoFour Languages From Forty Years Ago
Four Languages From Forty Years AgoScott Wlaschin
 
Programming with R in Big Data Analytics
Programming with R in Big Data AnalyticsProgramming with R in Big Data Analytics
Programming with R in Big Data AnalyticsArchana Gopinath
 
R Programming: Export/Output Data In R
R Programming: Export/Output Data In RR Programming: Export/Output Data In R
R Programming: Export/Output Data In RRsquared Academy
 
Future features for openCypher: Schema, Constraints, Subqueries, Configurable...
Future features for openCypher: Schema, Constraints, Subqueries, Configurable...Future features for openCypher: Schema, Constraints, Subqueries, Configurable...
Future features for openCypher: Schema, Constraints, Subqueries, Configurable...openCypher
 
Ejercicios de estilo en la programación
Ejercicios de estilo en la programaciónEjercicios de estilo en la programación
Ejercicios de estilo en la programaciónSoftware Guru
 
Python Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard WayPython Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard WayUtkarsh Sengar
 
python beginner talk slide
python beginner talk slidepython beginner talk slide
python beginner talk slidejonycse
 
Presentation R basic teaching module
Presentation R basic teaching modulePresentation R basic teaching module
Presentation R basic teaching moduleSander Timmer
 
The Great Scala Makeover
The Great Scala MakeoverThe Great Scala Makeover
The Great Scala MakeoverGarth Gilmour
 
Getting started with R when analysing GitHub commits
Getting started with R when analysing GitHub commitsGetting started with R when analysing GitHub commits
Getting started with R when analysing GitHub commitsBarbara Fusinska
 
Basics of Python programming (part 2)
Basics of Python programming (part 2)Basics of Python programming (part 2)
Basics of Python programming (part 2)Pedro Rodrigues
 
Dynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship groupDynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship groupReuven Lerner
 
R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)Christopher Roach
 

Ähnlich wie R Intro Workshop (20)

Database queries
Database queriesDatabase queries
Database queries
 
Four Languages From Forty Years Ago
Four Languages From Forty Years AgoFour Languages From Forty Years Ago
Four Languages From Forty Years Ago
 
Programming in R
Programming in RProgramming in R
Programming in R
 
Programming with R in Big Data Analytics
Programming with R in Big Data AnalyticsProgramming with R in Big Data Analytics
Programming with R in Big Data Analytics
 
R Programming: Export/Output Data In R
R Programming: Export/Output Data In RR Programming: Export/Output Data In R
R Programming: Export/Output Data In R
 
P3 2018 python_regexes
P3 2018 python_regexesP3 2018 python_regexes
P3 2018 python_regexes
 
Future features for openCypher: Schema, Constraints, Subqueries, Configurable...
Future features for openCypher: Schema, Constraints, Subqueries, Configurable...Future features for openCypher: Schema, Constraints, Subqueries, Configurable...
Future features for openCypher: Schema, Constraints, Subqueries, Configurable...
 
Ejercicios de estilo en la programación
Ejercicios de estilo en la programaciónEjercicios de estilo en la programación
Ejercicios de estilo en la programación
 
Python Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard WayPython Workshop - Learn Python the Hard Way
Python Workshop - Learn Python the Hard Way
 
python beginner talk slide
python beginner talk slidepython beginner talk slide
python beginner talk slide
 
Presentation R basic teaching module
Presentation R basic teaching modulePresentation R basic teaching module
Presentation R basic teaching module
 
The Great Scala Makeover
The Great Scala MakeoverThe Great Scala Makeover
The Great Scala Makeover
 
Ggplot2 v3
Ggplot2 v3Ggplot2 v3
Ggplot2 v3
 
Getting started with R when analysing GitHub commits
Getting started with R when analysing GitHub commitsGetting started with R when analysing GitHub commits
Getting started with R when analysing GitHub commits
 
R environment
R environmentR environment
R environment
 
Basics of Python programming (part 2)
Basics of Python programming (part 2)Basics of Python programming (part 2)
Basics of Python programming (part 2)
 
Class 10 Arrays
Class 10 ArraysClass 10 Arrays
Class 10 Arrays
 
Java introduction
Java introductionJava introduction
Java introduction
 
Dynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship groupDynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship group
 
R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)
 

Mehr von Saad Chahine

Quant Data Analysis
Quant Data AnalysisQuant Data Analysis
Quant Data AnalysisSaad Chahine
 
Csse 2014 hmm presentation_ta_ed
Csse 2014 hmm presentation_ta_ed Csse 2014 hmm presentation_ta_ed
Csse 2014 hmm presentation_ta_ed Saad Chahine
 
GEDU 6170 Reviews
GEDU 6170 Reviews GEDU 6170 Reviews
GEDU 6170 Reviews Saad Chahine
 
Gedu 6170 Mixed Methods Research
Gedu 6170 Mixed Methods Research Gedu 6170 Mixed Methods Research
Gedu 6170 Mixed Methods Research Saad Chahine
 
Gedu 6170 tiles abstracts and intro
Gedu 6170 tiles abstracts and introGedu 6170 tiles abstracts and intro
Gedu 6170 tiles abstracts and introSaad Chahine
 
Quantitative & Qualitative GEDU 6170
Quantitative & Qualitative GEDU 6170Quantitative & Qualitative GEDU 6170
Quantitative & Qualitative GEDU 6170Saad Chahine
 
Research Literacy GEDU6170 MSVU
Research Literacy GEDU6170 MSVUResearch Literacy GEDU6170 MSVU
Research Literacy GEDU6170 MSVUSaad Chahine
 
Relationship of Competency and Global Ratings in OSCEs
Relationship of Competency and Global Ratings in OSCEsRelationship of Competency and Global Ratings in OSCEs
Relationship of Competency and Global Ratings in OSCEsSaad Chahine
 
A Novel Approach for Developing Rating Scales for a Practice Ready OSCE
A Novel Approach for Developing Rating Scales for a Practice Ready OSCE A Novel Approach for Developing Rating Scales for a Practice Ready OSCE
A Novel Approach for Developing Rating Scales for a Practice Ready OSCE Saad Chahine
 
CERA saad chahine 2013 fuzzy clusters
CERA saad chahine 2013 fuzzy clustersCERA saad chahine 2013 fuzzy clusters
CERA saad chahine 2013 fuzzy clustersSaad Chahine
 
Ncme april 30 2013 saad chahine
Ncme april 30 2013 saad chahineNcme april 30 2013 saad chahine
Ncme april 30 2013 saad chahineSaad Chahine
 
Chahine Understanding Common Study Results
Chahine Understanding Common Study ResultsChahine Understanding Common Study Results
Chahine Understanding Common Study ResultsSaad Chahine
 
Chahine Hypothesis Testing,
Chahine Hypothesis Testing,Chahine Hypothesis Testing,
Chahine Hypothesis Testing,Saad Chahine
 
Saad Chahine ICSEI 2012
Saad Chahine ICSEI 2012Saad Chahine ICSEI 2012
Saad Chahine ICSEI 2012Saad Chahine
 
Saad Chahine Thesis
Saad Chahine Thesis Saad Chahine Thesis
Saad Chahine Thesis Saad Chahine
 
Saad Chahine Thesis Presentation Final
Saad Chahine Thesis Presentation FinalSaad Chahine Thesis Presentation Final
Saad Chahine Thesis Presentation FinalSaad Chahine
 

Mehr von Saad Chahine (16)

Quant Data Analysis
Quant Data AnalysisQuant Data Analysis
Quant Data Analysis
 
Csse 2014 hmm presentation_ta_ed
Csse 2014 hmm presentation_ta_ed Csse 2014 hmm presentation_ta_ed
Csse 2014 hmm presentation_ta_ed
 
GEDU 6170 Reviews
GEDU 6170 Reviews GEDU 6170 Reviews
GEDU 6170 Reviews
 
Gedu 6170 Mixed Methods Research
Gedu 6170 Mixed Methods Research Gedu 6170 Mixed Methods Research
Gedu 6170 Mixed Methods Research
 
Gedu 6170 tiles abstracts and intro
Gedu 6170 tiles abstracts and introGedu 6170 tiles abstracts and intro
Gedu 6170 tiles abstracts and intro
 
Quantitative & Qualitative GEDU 6170
Quantitative & Qualitative GEDU 6170Quantitative & Qualitative GEDU 6170
Quantitative & Qualitative GEDU 6170
 
Research Literacy GEDU6170 MSVU
Research Literacy GEDU6170 MSVUResearch Literacy GEDU6170 MSVU
Research Literacy GEDU6170 MSVU
 
Relationship of Competency and Global Ratings in OSCEs
Relationship of Competency and Global Ratings in OSCEsRelationship of Competency and Global Ratings in OSCEs
Relationship of Competency and Global Ratings in OSCEs
 
A Novel Approach for Developing Rating Scales for a Practice Ready OSCE
A Novel Approach for Developing Rating Scales for a Practice Ready OSCE A Novel Approach for Developing Rating Scales for a Practice Ready OSCE
A Novel Approach for Developing Rating Scales for a Practice Ready OSCE
 
CERA saad chahine 2013 fuzzy clusters
CERA saad chahine 2013 fuzzy clustersCERA saad chahine 2013 fuzzy clusters
CERA saad chahine 2013 fuzzy clusters
 
Ncme april 30 2013 saad chahine
Ncme april 30 2013 saad chahineNcme april 30 2013 saad chahine
Ncme april 30 2013 saad chahine
 
Chahine Understanding Common Study Results
Chahine Understanding Common Study ResultsChahine Understanding Common Study Results
Chahine Understanding Common Study Results
 
Chahine Hypothesis Testing,
Chahine Hypothesis Testing,Chahine Hypothesis Testing,
Chahine Hypothesis Testing,
 
Saad Chahine ICSEI 2012
Saad Chahine ICSEI 2012Saad Chahine ICSEI 2012
Saad Chahine ICSEI 2012
 
Saad Chahine Thesis
Saad Chahine Thesis Saad Chahine Thesis
Saad Chahine Thesis
 
Saad Chahine Thesis Presentation Final
Saad Chahine Thesis Presentation FinalSaad Chahine Thesis Presentation Final
Saad Chahine Thesis Presentation Final
 

Kürzlich hochgeladen

Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
The Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsThe Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsRommel Regala
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEaurabinda banchhor
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 

Kürzlich hochgeladen (20)

Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
The Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsThe Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World Politics
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSE
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 

R Intro Workshop