You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current result.values( ) function returns the retrieved results as a list. Maybe it is desirable to include an option 'type' to retrieve the results as a numpy array making certain scripts much more readable and shorter.
eg.
result.values( ) returns as a list
result.values( 'np' ) returns as a numpy array
The text was updated successfully, but these errors were encountered:
We could also make a result.array() method. I was also thinking to make the transition to a pandas dataframe more built-in with a result.dataframe() method. Maybe differentiating in the methods is better than using an argument to differentiate what one single method returns?
The current result.values( ) function returns the retrieved results as a list. Maybe it is desirable to include an option 'type' to retrieve the results as a numpy array making certain scripts much more readable and shorter.
eg.
The text was updated successfully, but these errors were encountered: