isflextable

In [ ]:
isflextable(table_name: str,
            schema: str,)

Checks if the input relation is a flextable.

Parameters

Name Type Optional Description
table_name
str
Name of the table to check.
schema
str
Table schema.

Returns

bool : True if the relation is a flex table.

Example

In [8]:
from verticapy.utilities import read_json, isflextable

read_json("laliga/*.json", table_name = "laliga", materialize = False)
isflextable(table_name = "laliga", schema = "v_temp_schema")
Out[8]:
True