diff --git a/benchmarks/dataframe_read_large_file.cc b/benchmarks/dataframe_read_large_file.cc index 741fa659..e11cb57f 100644 --- a/benchmarks/dataframe_read_large_file.cc +++ b/benchmarks/dataframe_read_large_file.cc @@ -85,6 +85,11 @@ int main(int, char *[]) { << double(duration_cast(end - start).count()) / 1000000.0 << " seconds\n"; + /* + df.write + ("Large_File.dat", io_format::binary); + */ + return (0); } diff --git a/docs/HTML/DateTime.html b/docs/HTML/DateTime.html index 2e4946d6..b3f76aa5 100644 --- a/docs/HTML/DateTime.html +++ b/docs/HTML/DateTime.html @@ -77,34 +77,34 @@ -

Summary

+

Summary

Since DataFrame is a statistical library, it often deals with time-series data. So, it needs to keep track of time.
The most efficient way of indexing DataFrame by time is to use an index type of time_t for second precision or double or long long integer for more precision. DateTime class provides a more elaborate handling of time. Also, it is a general handy DateTime object. DateTime is a cool and handy object to manipulate date/time with nanosecond precision and multi timezone capability. It has a very simple and intuitive interface that allows you to break date/time to their components, reassemble date/time from their components, advance or pullback date/time with different granularities, and more.



-

Code structure

+

Code structure 🗂

Both the header (DateTime.h) and source (DateTime.cc) files are part of the DataFrame project. They are in the usual include/Utils and src/Utils directories.
-

Build Instructions

+

Build Instructions 🛠

Follow the DataFrame build instructions.


-

Example

+

Example 🧩

This library can have up to Nano second precision depending on what systems calls are available. These are some example code:i
@@ -136,7 +136,7 @@

Example


-

Types

+

Types 🦋

These constants are used for formatting date/time into strings:
    enum class DT_FORMAT : unsigned short int  {
@@ -305,7 +305,7 @@ 

Types



-

Member Functions

+

Member Functions 🗝

    // A constructor that creates a DateTime initialized to now.
     // tz: Desired time zone from DT_TIME_ZONE above.
@@ -491,7 +491,7 @@ 

Member Functions



-

Global DateTime Operators

+

Global DateTime Operators 🌐

// DateTime output operator to a stream
 //
@@ -544,6 +544,8 @@ 

Global DateTime Operators

};
+
← Back to Github
+