R datové typy

Příklady kódu

2
0

R datové typy

# Short answer:
# In R there are 6 main data types: character, numeric (real or decimal),
# integer, logical, complex, and raw. Use class(object) to determine the
# data type you are working with.

# Example data types:
Data Type		Examples	
Logical		TRUE, FALSE
Numeric		12.3, 5, 999 # In R, "ints" and "floats" are type numeric
Integer		2L, 34L, 0L	# Add an L after the number to specify type int
Character	'a', "good", "TRUE", '23.4'	
Complex		3 + 2i 	# This type isn't used much
Raw			"Hello" is stored as 48 65 6c 6c 6f	# This type isn't used much
0
0

datové typy v r

# Create a matrix.
M = matrix( c('a','a','b','c','b',1), nrow = 2, ncol = 3, byrow = TRUE)

print(M)

Související stránky

Související stránky s příklady

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................