pywhy_graphs.classes.timeseries.complete_ts_graph#
- pywhy_graphs.classes.timeseries.complete_ts_graph(variables: ~typing.List[int | float | str | ~typing.Any], max_lag: int, include_contemporaneous: bool = True, create_using=<class 'pywhy_graphs.classes.timeseries.digraph.StationaryTimeSeriesDiGraph'>)[source]#
- Create a complete time-series graph. - An analogous function for complete graph from networkx. - Parameters:
- variableslist
- List of variables in the time-series graph. 
- max_lagint
- The maximum lag. 
- include_contemporaneousbool, optional
- _description_, by default True 
- create_usingfunc, optional
- The class to create, by default StationaryTimeSeriesDiGraph. 
 
- Returns:
- GStationaryTimeSeriesDiGraph
- The complete graph.