watsonx: using notebook for data collection - how can I save it locally so I can use it for AutoAI?

56 Views Asked by At

I am trying to store data from yfinance lib locally on watsonx, so I can use it in the AutoAI function.

Right now I have written the following:

# Save to CSV
    historical_prices.to_csv(output_file, index=False)
    print(f"Data saved to {output_file}")
# Fetch data and save to CSV
fetch_finance_data(finance_symbols, start_date, end_date, output_file)

Can anyone help me with this?

I tried looking in FAQ

0

There are 0 best solutions below