R GUI.ppt

49 views 11 slides Jan 04, 2023
Slide 1
Slide 1 of 11
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11

About This Presentation

Analytical techniques


Slide Content

Topic Presented To
Dr.Muhammad Haneef Sahb
Topic Presented By
Muhammad Qutb Ud Din
Roll no. 29
M.phil Zoology 1st (Regular)
Institute of Pure And Applied Biology, BZU Multan

Definition of R
Basic feature of R
Exploring R GUI
Data frame and list
Handling data in R workshop
Functions for Reading Data Into R
Functions for Writing Data to Files

R is a programming language for statistical
computing and graphics supported by the R core
and R foundation
GUI:
GUI stands for graphical user interface

Open source
Strong graphical capabilities
Highly active community
Data handling and storage
Interfacing with databases
Running code without a compiler

R is useful for web scraping
It can perform multiple complex
mathematical operations with a single
command
Using R Markdown it can create attractive
reports that combine plain text with code and
visualizations of the earth
New ideas and technologies often appear in
the R community first

R is a command line driven program. The
user enter command quickly and each
command is executed one at a time.
GUI is R Commander, which can also run
under windows.

Data frames are generic data objects of R
which are used to store the tabular data
They are two dimensional, heterogeneous
data structures
A list in R, however, comprises o elements,
vectors, data frames, v or lists that may
belong to differ

The workspace is your current R working
environment and includes any user defined
objects(vectors, matrices, data frames, lists,
functions)
At the end of an R session, the users can save
an image of the current workspace that is
automatically reloaded the next time R is
started

There are few very useful functions for
reading data into R.
Read table() and read.csv(common separated
values) are two popular functions used for
reading tabular data into R.
Read lines()is used for reading lines from a
text files.
Source()is a very useful function for reading
in R code files from another R program.
Dget() functions is also reading in R code
files.

There are some functions for writing data to
files.
Write table() is used for writing tabular data
to text files.(i.e csv).
Write lines() function is used for writing
character data line by line to a file or
connection.
Dump() is function for dumping a textual
representation of multiple R object.

Thank You