Data Structure Representation
Jump to navigation
Jump to search
A Data Structure Representation is a representation of a data structure.
- Context:
- It can (often) be represented within Software Code.
- …
- Example(s):
CREATE TABLE Persons (PersonID int, Name varchar(255));
, using a SQL CREATE TABLE Operation.df=pd.DataFrame()
, using a pandas.DataFrame Creation Operation.- a Physical Data Model.
- …
- Counter-Example(s):
- See: Representation.