A PythonObject which is refined by a constant literal string type indicating its type name.
A PythonObject which is refined by a constant literal string type indicating its type name. Python objects
will be assigned a type like this (i.e. TypedPythonObject["DataFrame"]) so that we can use its python type to
find specific reprs for that type. For example, we could make an instance of type:
which would be selected for a PythonObject["DataFrame"]. Then, this instance could (for example) return a similar
streaming data representation to what the Scala DataFrame instance does, enabling the built-in data viz.
A PythonObject which is refined by a constant literal string type indicating its type name. Python objects will be assigned a type like this (i.e.
TypedPythonObject["DataFrame"]
) so that we can use its python type to find specific reprs for that type. For example, we could make an instance of type:ReprsOf[ TypedPythonObject[LiteralStr.
DataFrame
.T] ]which would be selected for a PythonObject["DataFrame"]. Then, this instance could (for example) return a similar streaming data representation to what the Scala DataFrame instance does, enabling the built-in data viz.