0% found this document useful (0 votes)
11 views1 page

DS Using R Lab Task With Screenshot

The document provides proof of RStudio installation along with a placeholder for a screenshot. It includes basic R programming examples demonstrating arithmetic operations, data frame creation, and graph plotting. These examples serve as a practical introduction to using R for data analysis.

Uploaded by

kalyanimudi1302
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)
11 views1 page

DS Using R Lab Task With Screenshot

The document provides proof of RStudio installation along with a placeholder for a screenshot. It includes basic R programming examples demonstrating arithmetic operations, data frame creation, and graph plotting. These examples serve as a practical introduction to using R for data analysis.

Uploaded by

kalyanimudi1302
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/ 1

DS Using R - Lab Task Report

1. RStudio Installation Proof


Below is a sample proof of RStudio installation. If needed, replace it with your own screenshot.

[Insert Screenshot Here]

2. R Demo Sample Examples


Here are some basic R examples to demonstrate R programming:

# Basic Arithmetic
x <- 10
y <- 5
sum <- x + y
sum

# Creating a Data Frame


data <- data.frame(Name = c("Alice", "Bob", "Charlie"), Age = c(25, 30, 35))
print(data)

# Plotting a Graph
x <- c(1, 2, 3, 4, 5)
y <- c(2, 4, 6, 8, 10)
plot(x, y, type='o', col='blue', main="Simple Line Plot", xlab="X-Axis", ylab="Y-Axis")

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy