CODE 2 : IRIS DATA
1.#call the datasets library
: เป็นเสมือนการเรียกแหล่งข้อมูลของเราเข้ามาในที่นี้ เรียกจาก ไลบารี่ ที่มีข้อมูลอยู่แล้ว
(As the source of our information comes into the library is called from the data in it .)
2.irsi
: เป็นการเรียกโชว์ข้อมูลที่มีชื่อว่า iris
(It also displays the data name iris.)
3.#create a new object call iris_data and using data from iris
: หมายถึง การสร้างกลุ่มของการประมวลผลใหม่โดยใช้ข้อมูลจากฐานข้อมูลที่ ชื่อ ว่า iris
4.?iris
: หมายถึง เราอยากรู้ว่า มีตัวแปรอะไรบ้างในข้อมูล ที่ชื่อ ว่า iris
(That means we What in the name of a variable that iris.)
5.name(iris_data)
: หมายถึง ชื่อของตัวแปร หรือ variable ที่เราจะนำมาทำการวิเคราะห์
(The name of a variable or a variable that will be analyzed .)
6. mean(iris_data$Sepal.Length)
sd(iris_data$Sepal.Length)
max(iris_data$Sepal.Length)
min(iris_data$Sepal.Length)
var(iris_data$Sepal.Length)
: หมายถึง นำเอาข้อมูล Sepal.Lenght มาหาค่า mean,sd,max,min,var
7. ?sd
: หมายถึง ความหมายของ sd เป็นอย่างไรที่ใช้ในข้อมูลนี้
(Represents the meaning of sd be used in this field.)
8. install.packages("psych")
library(psych)
describe(iris_data)
: หมายถึง ให้ลงแพคเกจ psych ในการวิเคราะห์นี้
- โดยการที่จะสามารถลง แพคเกจได้นั้นให้ไปที่ Packages ขวามือด้านล่าง แล้วเลือก
install packages แล้ว search หา ด้วยคำว่า "psych"
9.plot(iris_data$sepal.lenght, iris_data$sepal.width, col ="blue")
: หมายถึง การสร้างกราฟระหว่างน้ำหนักและส่วนสูงของข้อมูล iris
(Means to create a graph between weight and height of the iris.)
ไม่มีความคิดเห็น:
แสดงความคิดเห็น