from_json

classmethod DataFrame.from_json(json_str, name, roles=None, ignore=False, dry=False)[source]

Create a new DataFrame from a JSON string.

It will construct a data frame object in the engine, fill it with the data read from the JSON string, and return a corresponding DataFrame handle.

Args:
json_str (str):

The JSON string containing the data. The json_str should be in the following format:

json_str = "{'col1': [1.0, 2.0, 1.0], 'col2': ['A', 'B', 'C']}"
name (str):

Name of the data frame to be created.

roles(dict[str, List[str]] or Roles, optional):

Maps the roles to the column names (see colnames()).

The roles dictionary is expected to have the following format:

roles = {getml.data.role.numeric: ["colname1", "colname2"],
         getml.data.role.target: ["colname3"]}

Otherwise, you can use the Roles class.

ignore (bool, optional):

Only relevant when roles is not None. Determines what you want to do with any colnames not mentioned in roles. Do you want to ignore them (True) or read them in as unused columns (False)?

dry (bool, optional):

If set to True, then the data will not actually be read. Instead, the method will only return the roles it would have used. This can be used to hard-code roles when setting up a pipeline.

Returns:

DataFrame:

Returns:

DataFrame: Handler of the underlying data.