Sep 6, 2024
#
and are not executed.head(iris)
.summary(iris)
.plot()
commands.library(package_name)
to load packages.install.packages("package_name")
.plot()
for scatterplots of quantitative data.barplot()
.hist()
commands.summary()
to get basic statistics for datasets.describe()
from the psych package for detailed statistics.import("file_path")
for CSV/TXT.import("file_path.xlsx")
for Excel files.View(data_frame)
.dist()
and hclust()
for clustering.prcomp()
function.lm()
to create linear models.