Skip to content
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

Can't skip header and utilize map-fn #48

Open
ctyler9 opened this issue Jul 7, 2024 · 0 comments
Open

Can't skip header and utilize map-fn #48

ctyler9 opened this issue Jul 7, 2024 · 0 comments

Comments

@ctyler9
Copy link

ctyler9 commented Jul 7, 2024

(defun load-event-data (data-path)
  (let ((data (cl-csv:read-csv data-path 
							   :skip-first-p t
                               :map-fn (lambda (row)
                                         (make-instance 'PRC
                                                        :security "ADA"
                                                        :timestamp (nth 2 row)
                                                        :price (nth 3 row)
                                                        :lastvolume (nth 7 row))))))
    (format t "Total objects created: ~A~%" (length data))
    data))

there seems to be a bug when trying to create objects through :map-fn... the header/first row isn't skipped.

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

No branches or pull requests

1 participant