VOOZH about

URL: https://www.geeksforgeeks.org/r-language/check-if-an-object-is-a-table-in-r-programming-is-table-function/

⇱ Check if an Object is a Table in R Programming - is.table() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Check if an Object is a Table in R Programming - is.table() Function

Last Updated : 15 Jul, 2025
is.table() function in R Language is used to check if an object is a table.
Syntax: is.table(x) Parameters: x: Object to be checked
Example 1: Output:
[1] FALSE
A B C D E F G H I J 
2 4 3 1 2 3 2 1 4 2 
[1] TRUE
Example 2: Output:
[1] FALSE
 A B C
A 1 4 7
B 2 5 8
C 3 6 9
[1] TRUE
Comment

Explore