Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

qopts.columns is not supported for data tables #16

Open
SumanthReddyA opened this issue Oct 26, 2018 · 3 comments
Open

qopts.columns is not supported for data tables #16

SumanthReddyA opened this issue Oct 26, 2018 · 3 comments
Assignees

Comments

@SumanthReddyA
Copy link

qopts.columns options for accessing selected columns is not supporting.
as documetns says
data = Quandl.datatable('ZACKS/EE', 'ticker', 'AAPL', 'qopts.columns', {'per_end_date', 'per_type', 'eps_mean_est'}), but MATLAB throws error "Unmatched parameter name 'qopts.columns' must be a string scalar or character vector that can represent a field name ".

@RaymondMcT
Copy link
Contributor

Older versions of Matlab allowed for periods in struct names, and at some time they removed that ability. A fix is to allow these parameters to be passed in as containers.Map as such

data = Quandl.datatable('ZACKS/EE', 'ticker', 'AAPL', 'qopts', containers.Map('columns', {'per_end_date', 'per_type', 'eps_mean_est'},'UniformValues',0))

This functionality is added in the alternative-syntax branch. Which should be merged into master soon but you're free to pull from there immediately.

@SumanthReddyA
Copy link
Author

Thanks @RaymondMcT
I will try the syntax and get back to you.

@josephsmtepper
Copy link

@RaymondMcT : Is there an updated file available for this functionality yet?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants