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, ∼1418🔥, 0💬
Popular Posts:
How to view dynamic field codes in Microsoft Word? Each dynamic value is Microsoft Word is driven by...
Where to find tutorials on LibGen (Library Genesis)? Here is a large collection of tutorials to answ...
How to fix the Microphone Permissions error with making a call with Messenger in iPhone? If your Mic...
How to convert a Word document into a filtered Web page? I have a nice Word document and want to pub...
How to download Google Chrome 31? I heard it has some really nice features for Web developers. If yo...