Created
October 17, 2020 15:47
-
-
Save ifknot/71a8c04c0525f636224a51f451dfacd4 to your computer and use it in GitHub Desktop.
read csv data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "data_frame.h" | |
namespace R { | |
// TODO: column names and classes | |
data_frame read_csv(std::string file_path, bool has_header = true); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment