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
{{ message }}
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
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 ".
The text was updated successfully, but these errors were encountered:
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.
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 ".
The text was updated successfully, but these errors were encountered: