We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In [7]: import ibis In [8]: df = pd.DataFrame({'A': [1, 2, 3]}) In [9]: t = ibis.pandas.connect({'df': df}).table('df') In [10]: t.A+1 Out[10]: ref_0 PandasTable[table] name: df schema: A : int64 Add[int64*] left: A = Column[int64*] 'A' from table ref_0 right: Literal[int8] 1
would be nice to write this like
from ibis.pandas.api import from_dataframe t = from_dataframe(pd.DataFrame(.....))
makes interop with pandas that much easier
The text was updated successfully, but these errors were encountered:
ENH: ibis.pandas.from_dataframe convenience function
c35740c
closes ibis-project#1155
21dfcbd
9e579bd
3e099b1
d44c74c
cpcloud
Successfully merging a pull request may close this issue.
would be nice to write this like
makes interop with pandas that much easier
The text was updated successfully, but these errors were encountered: