
MACHINE LEARNING REGRESSION MODELLING WITH R 👉 To mention briefly, EDA (Exploratory Data Analysis) is a method for examining datasets to highlight their significant characteristics, frequently using visual techniques. EDA library(ggplot2) Importing the dataset t_data = read.csv('C:/Users/Asus/Desktop/VERİ BİLİMİ YÜKSEK LİSANS/R -Data Visualisation/blog/blog-7/train.csv') The "head()" function displays the first n (default value n=6) rows of a dataset. head(t_data) x y 1 24 21.54945 2 50 47.46446 3 15 17.21866 4 38 36.58640 5 87 87.28898 6 36 32.46387 The "tail()" function displays the last n (default value n=6) rows of a dataset. If you provide a number inside the function like "tail(t_data,10)" it will display the last ten rows. > tail(t_data) x y 695 81 81.45545 696 58 58.59501 697 93 94.62509 698 82 88.60377 699 66 63.64869 700 97 94.97527 "str(t_data)" will di...