R Pre Test

An engaging and colorful illustration of R programming concepts, featuring data charts, coding symbols, and a user interacting with a computer, in a modern workspace environment.

R Programming Basics Quiz

Test your knowledge of R programming with this engaging quiz designed for beginners and intermediate users. Whether you are a student, a teacher, or simply a data enthusiast, this quiz will help reinforce your understanding of key concepts in R.

You'll encounter questions related to:

  • Data Manipulation
  • Basic Functions
  • Graphing Libraries
  • Data Frames and Summary Statistics
  • Importing Data
10 Questions2 MinutesCreated by CodingNinja234
R ile görsel raporlar oluşturmak için hangisi tercih edilir?
R Script
R Markdown
Aşağıdakilerden hangisi sonuç olarak Hello World yazdırmaz?
Print("Hello World")
A="Hello World"; print(a)
Print(Hello World)
Print('Hello World')
"df" isimli bir data frame'in "feed" isimli sütununda 500'den küçük ve 1000'den büyük olan değerleri silmek ve revize edilmiş data ile "df2" isimli yeni bir data frame oluşturmak için aşağıdaki kodlardan hangisi kullanılabilir?
Df2 <- subset(df, feed < 500 & feed > 1000)
Df2 <- subset(df, feed > 500 & feed < 1000)
Df2 <- subset(df, feed < 500 | feed > 1000)
Df2 <- subset(df, feed > 500 , feed < 1000)
"df" isimli data frame'in minimum, maksimum, mean gibi temel istatistik özelliklerini görmemizi sağlayan fonksiyon hangisidir?
Mean(df)
Max(df)
Summary(df)
Typeof(df)
Daha önceden yüklediğimiz bir library'yi her seferinde kullanmadan önce tekrar yüklememiz gerekir. Doğru/Yanlış?
Doğru
Yanlış
"df" isimli dataframe'in feed sütunu aşağıdaki gibidir:
 
feed
1001
1203
1205
1300
1202
1004
1009
 
tail(df$feed,1) + head(df$feed,1) sonucu nedir?
2204
2015
1300
2010
Aşağıdaki if işlemi hangi sonucu verir?
 
a=10
 
if(a>10) {

print("RED")

}else{

print("GREEN")

}
GREEN
RED
Hata verir
Bilgisayarındaki excel dosyasını R ortamına taşımak isteyen bir kişi aşağıdaki fonksiyonu oluşturmuştur. Dosya konumunun doğru olduğuna emin olmasına rağmen hata almaktadır. Hata sebebi aşağıdakilerden hangisi olamaz?
 
df <- read_excel(C:\Users\07816\Desktop\R Mod 1\36E1DATA.xlsx)
Dosya konumu tırnak içerisinde verilmemiş bu nedenle dosya konumunu sistem bir değişken olarak algılamaktadır.
Dosya yolu oluşturulurken / işaretinden çift kullanılmalı.
Read_excel fonksiyonu için gerekli library yüklenmemiş veya çağrılmamış olabilir.
Eşittir sembolünde "<-" yerine "=" kullanılmalı.
Grafik çizme konusunda en popüler library'lerden biri aşağıdakilerden hangisidir?
Ggplot2
Rcurl
Lubridate
XML
{"name":"R Pre Test", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Test your knowledge of R programming with this engaging quiz designed for beginners and intermediate users. Whether you are a student, a teacher, or simply a data enthusiast, this quiz will help reinforce your understanding of key concepts in R.You'll encounter questions related to:Data ManipulationBasic FunctionsGraphing LibrariesData Frames and Summary StatisticsImporting Data","img":"https:/images/course8.png"}
Powered by: Quiz Maker