Skip to content

Load oracle Dataframe in dask dataframe

I used to work with pandas and cx_Oracle until now. But I haver to switch to dask now due to RAM limitations. I tried to do it similar to how I used cx_oracle with pandas. But I receive an AttributeError named: Any ideas if its just a problem with the package? Answer Please read the dask doc on SQL: you

How to convert ₹22000 string to float in python

Traceback (most recent call last): File “scrap.py”, line 13, in converted_price=float(price[:5]) ValueError: could not convert string to float: ‘₹xa022,’ Answer You’ll have to filter out all of the characters that aren’t part of a floating point number since the float funct…