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
With the following code in GeneralAutotranslation.ipynb:
%%python import pandas as pd df = pd.read_csv('../resources/data/interest-rates.csv') df.set_index('time') beakerx.rates = df
And beakerx.rates would not set time column as the index column. If we do
df = df.set_index('time')
instead, then time column would omits in output.
The text was updated successfully, but these errors were encountered:
#7775: autotranslation respects set_index for pandas
af5e2e9
#7775: autotranslation respects set_index for pandas (#7787)
a0f41ef
jaroslawmalekcodete
No branches or pull requests
With the following code in GeneralAutotranslation.ipynb:
And beakerx.rates would not set time column as the index column.
If we do
instead, then time column would omits in output.
The text was updated successfully, but these errors were encountered: