Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Data Structure - Factor
What is a Factor?
✍: FYIcenter.com
A factor is a data structure that stores a vector
and its distinct values as categories.
1. Create a factor object with the factor() function -
> f = factor( c("Bike", "Car", "Truck", "Car", "Bike", "Truck") )
> f
[1] Bike Car Truck Car Bike Truck
Levels: Bike Car Truck
> typeof(f)
[1] "integer"
> is.factor(f)
[1] TRUE
2. Get factor length and members -
> f = factor( c("Bike", "Car", "Truck", "Car", "Bike", "Truck") )
> length(f)
[1] 6
> f[4]
[1] Car
Levels: Bike Car Truck
2023-05-31, ∼1445🔥, 0💬
Popular Posts:
How to install Mozilla Firefox 2.0 add-on: FireFTP? FireFTP is a Mozilla Firefox 2 add-on that provi...
Why I am getting the "FTP over TLS is not enabled, users cannot securely log in" waring on my FileZi...
What is Microsoft Office 365? Office 365 is a cloud service offered by Microsoft that provide produc...
What is a PowerPoint Template (.potx) File? What is the difference between .potx and .pptx files? A ...
How to pause file transfer in FileZilla FTP Client? I want to close the computer in the middle of a ...