-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
TypeError: DataShape time is not NumPy-compatible #219
Comments
Hello, What is the result of |
Hey, Thanks for getting back to me. I downloaded this dataset ->https://catalog.data.gov/dataset/traffic-violations-56dda. This is what I get back from
And now it worked when I ran |
|
|
numpy doesn't have a good type to describe time (only). that's why they didn't implement that. try to take it out as a string. but this is really a problem odo has to deal with. |
Now the problem seems to remain unsolved. What can I do to read time-type data by string type |
Hi,
I have some problems when interfacing with MongoDB. Namely, I can do this
In [104]: odo(traffic, 'mongodb://localhost:27017/packt::traffic')
Out[104]: Collection(Database(MongoClient('localhost', 27017), 'packt'), 'traffic')
but when I try to read it back
In [105]: traffic_mongo = bl.Data('mongodb://localhost:27017/packt::traffic')
traffic_mongo.head()
I get the error as in the subject. The
traffic
object is of blaze.Data() type and contains two date fields.The text was updated successfully, but these errors were encountered: