Communicate with a gog server for data visualization independent of Python.
The gog
function sends data from a pandas DataFrame to a gog
server such as gogd. The gog server is responsible for passing the
data to a gog frontend such as gogi for visualization.
> import pandas as pd > my_data = pd.DataFrame({'x': [1, 2, 3], 'y': [3, 1, 1]}) > from gogpy import gog > gog(my_data)