diff --git a/docs/HTML/AutoCorrVisitor.html b/docs/HTML/AutoCorrVisitor.html index 29404a2c..d4cb303e 100644 --- a/docs/HTML/AutoCorrVisitor.html +++ b/docs/HTML/AutoCorrVisitor.html @@ -73,10 +73,10 @@ This is a "single action visitor", meaning it is passed the whole data vector in one call and you must use the single_act_visit() interface.

- This functor class calculates the auto correlation of given column. The calculation lag is fixed with the given lag parameter. See roll_policy for how the calculations are done
+ This functor class calculates the auto correlation of given column. The calculation lag is fixed with the given lag parameter. See roll_policy for how the calculations are done

-    FixedAutoCorrVisitor (size_type lag_period, roll_policy rp);
+    FixedAutoCorrVisitor (size_type lag_period, roll_policy rp);
 
     lag_period: Period to offset the correlation calculations
     rp: How to roll over the input with the lagged period. See roll_policy
diff --git a/docs/HTML/DataFrame.html b/docs/HTML/DataFrame.html
index 91f76239..dcb7029c 100644
--- a/docs/HTML/DataFrame.html
+++ b/docs/HTML/DataFrame.html
@@ -622,7 +622,7 @@ 

API Reference with code samples &# - Miscellaneous    🦩 + Gears    diff --git a/docs/HTML/append_column.html b/docs/HTML/append_column.html index 182ad88f..25946846 100644 --- a/docs/HTML/append_column.html +++ b/docs/HTML/append_column.html @@ -48,7 +48,7 @@ std::size_t append_column(const char *name, const T &val, - nan_policy padding = nan_policy::pad_with_nans); + nan_policy padding = nan_policy::pad_with_nans);

@@ -68,8 +68,8 @@ template<typename ITR> std::size_t append_column(const char *name, - Index2D<const ITR &> range, - nan_policy padding = nan_policy::pad_with_nans); + Index2D<const ITR &> range, + nan_policy padding = nan_policy::pad_with_nans); diff --git a/docs/HTML/append_index.html b/docs/HTML/append_index.html index cb56153b..dd9915f7 100644 --- a/docs/HTML/append_index.html +++ b/docs/HTML/append_index.html @@ -63,7 +63,7 @@

 template<typename ITR>
 std::size_t
-append_index(Index2D range);
+append_index(Index2D range);
         
diff --git a/docs/HTML/change_freq.html b/docs/HTML/change_freq.html index 700bf837..3669016b 100644 --- a/docs/HTML/change_freq.html +++ b/docs/HTML/change_freq.html @@ -47,7 +47,7 @@ template<typename ... Ts> DataFrame<T, H> change_freq(size_type new_freq, - time_frequency time_unit = + time_frequency time_unit = time_frequency::not_valid) const; @@ -59,7 +59,7 @@ Ts: List all the types of all data columns. A type should be specified in the list only once.
new_freq: The new frequency expressed in a positive integer value. The Unit depends on the index type and time_unit parameter
- time_unit: Time unit based on time_frequency enum. If index time is not DateTime, time_unit must be not_valid. If index time is DateTime, time_unit must not be not_valid. Otherwise, the behavior is undefined.
+ time_unit: Time unit based on time_frequency enum. If index time is not DateTime, time_unit must be not_valid. If index time is DateTime, time_unit must not be not_valid. Otherwise, the behavior is undefined.
diff --git a/docs/HTML/gen_datetime_index.html b/docs/HTML/gen_datetime_index.html index 41f55c20..fd12ad04 100644 --- a/docs/HTML/gen_datetime_index.html +++ b/docs/HTML/gen_datetime_index.html @@ -48,7 +48,7 @@ static std::vector<typename I> gen_datetime_index(const char *start_datetime, const char *end_datetime, - time_frequency t_freq, + time_frequency t_freq, long increment = 1, DT_TIME_ZONE tz = DT_TIME_ZONE::LOCAL); diff --git a/docs/HTML/get_data_by_idx.html b/docs/HTML/get_data_by_idx.html index c56b7299..81ec2b22 100644 --- a/docs/HTML/get_data_by_idx.html +++ b/docs/HTML/get_data_by_idx.html @@ -46,7 +46,7 @@

 template<typename ... Ts>
 DataFrame
-get_data_by_idx(Index2D<IndexType> range) const;
+get_data_by_idx(Index2D<IndexType> range) const;
         
@@ -82,7 +82,7 @@

 template<typename ... Ts>
 View
-get_view_by_idx(Index2D<IndexType> range);
+get_view_by_idx(Index2D<IndexType> range);
         
@@ -121,7 +121,7 @@

 template<typename ... Ts>
 ConstView
-get_view_by_idx(Index2D<IndexType> range) const;
+get_view_by_idx(Index2D<IndexType> range) const;
         
diff --git a/docs/HTML/get_data_by_loc.html b/docs/HTML/get_data_by_loc.html index 8fea0a2e..d2b9fda3 100644 --- a/docs/HTML/get_data_by_loc.html +++ b/docs/HTML/get_data_by_loc.html @@ -47,7 +47,7 @@

 template<typename ... Ts>
 DataFrame<I, H>
-get_data_by_loc(Index2D<long> range) const;
+get_data_by_loc(Index2D<long> range) const;
         
@@ -84,7 +84,7 @@

 template<typename ... Ts>
 View
-get_view_by_loc(Index2D<long> range);
+get_view_by_loc(Index2D<long> range);
         
@@ -123,7 +123,7 @@

 template<typename ... Ts>
 ConstView
-get_view_by_loc(Index2D<long> range) const;
+get_view_by_loc(Index2D<long> range) const;
         
diff --git a/docs/HTML/load_column.html b/docs/HTML/load_column.html index 89ca7291..53147e09 100644 --- a/docs/HTML/load_column.html +++ b/docs/HTML/load_column.html @@ -48,7 +48,7 @@ template<typename T, typename ITR> std::size_t load_column(const char *name, - Index2D<const ITR &> range, + Index2D<const ITR &> range, nan_policy padding = nan_policy::pad_with_nans, bool do_lock = true); diff --git a/docs/HTML/load_result_as_column.html b/docs/HTML/load_result_as_column.html index 4304a679..90e8b86f 100644 --- a/docs/HTML/load_result_as_column.html +++ b/docs/HTML/load_result_as_column.html @@ -49,7 +49,7 @@ std::size_t load_result_as_column(V &visitor, const char *new_col_name, - nan_policy padding = nan_policy::pad_with_nans); + nan_policy padding = nan_policy::pad_with_nans); @@ -79,7 +79,7 @@ load_result_as_column(const char *col_name, V &&visitor, const char *new_col_name, - nan_policy padding = nan_policy::pad_with_nans); + nan_policy padding = nan_policy::pad_with_nans); @@ -110,7 +110,7 @@ const char *col_name2, V &&visitor, const char *new_col_name, - nan_policy padding = nan_policy::pad_with_nans); + nan_policy padding = nan_policy::pad_with_nans); @@ -138,7 +138,7 @@ const char *col_name3, V &&visitor, const char *new_col_name, - nan_policy padding = nan_policy::pad_with_nans); + nan_policy padding = nan_policy::pad_with_nans); @@ -169,7 +169,7 @@ const char *col_name4, V &&visitor, const char *new_col_name, - nan_policy padding = nan_policy::pad_with_nans); + nan_policy padding = nan_policy::pad_with_nans); diff --git a/docs/HTML/modify_by_idx.html b/docs/HTML/modify_by_idx.html index 4f6ba79c..98e77e79 100644 --- a/docs/HTML/modify_by_idx.html +++ b/docs/HTML/modify_by_idx.html @@ -47,7 +47,7 @@ template<typename ... Ts> DataFrame & modify_by_idx(DataFrame &rhs, - sort_state already_sorted = sort_state::not_sorted); + sort_state already_sorted = sort_state::not_sorted); diff --git a/docs/HTML/read.html b/docs/HTML/read.html index ac634d31..17f7c6aa 100644 --- a/docs/HTML/read.html +++ b/docs/HTML/read.html @@ -47,7 +47,7 @@

 bool
 read(const char *file_name,
-     io_format iof = io_format::csv,
+     io_format iof = io_format::csv,
      bool columns_only = false,
      size_t starting_row = 0,
      size_t num_rows = std::numeric_limits<size_t>::max());
@@ -193,7 +193,7 @@
 template<typename S>
 bool
 read(S &in_s,
-     io_format iof = io_format::csv,
+     io_format iof = io_format::csv,
      bool columns_only = false);
         
@@ -209,7 +209,7 @@

 std::future<bool>
 read_async(const char *file_name,
-           io_format iof = io_format::csv,
+           io_format iof = io_format::csv,
            bool columns_only = false);
         
@@ -226,7 +226,7 @@ template<typename S> std::future<bool> read_async(S &in_s, - io_format iof = io_format::csv, + io_format iof = io_format::csv, bool columns_only = false); diff --git a/docs/HTML/remove_data_by_idx.html b/docs/HTML/remove_data_by_idx.html index 0f80f1db..24b8eca1 100644 --- a/docs/HTML/remove_data_by_idx.html +++ b/docs/HTML/remove_data_by_idx.html @@ -46,7 +46,7 @@

 template<typename ... Ts>
 void
-remove_data_by_idx(Index2D<I> range);
+remove_data_by_idx(Index2D<I> range);
         
diff --git a/docs/HTML/remove_data_by_loc.html b/docs/HTML/remove_data_by_loc.html index cc849496..bc032083 100644 --- a/docs/HTML/remove_data_by_loc.html +++ b/docs/HTML/remove_data_by_loc.html @@ -46,7 +46,7 @@

 template<typename ... Ts>
 void
-remove_data_by_loc(Index2D<I> range);
+remove_data_by_loc(Index2D<I> range);
         
diff --git a/docs/HTML/write.html b/docs/HTML/write.html index ab74b6bb..192f2c7e 100644 --- a/docs/HTML/write.html +++ b/docs/HTML/write.html @@ -48,7 +48,7 @@ template<typename S, typename ... Ts> bool write(S &o, - io_format iof = io_format::csv, + io_format iof = io_format::csv, std::streamsize precision = 12, bool columns_only = false, long max_recs = std::numeric_limits::max()) const; @@ -191,7 +191,7 @@ template<typename ... Ts> std::future<bool> write(const char *file_name, - io_format iof = io_format::csv, + io_format iof = io_format::csv, std::streamsize precision = 12, bool columns_only = false, long max_recs = std::numeric_limits::max()) const; @@ -211,7 +211,7 @@ template<typename S, typename ... Ts> std::future<bool> write_async(S &o, - io_format iof = io_format::csv, + io_format iof = io_format::csv, std::streamsize precision = 12, bool columns_only = false, long max_recs = std::numeric_limits::max()) const; @@ -230,7 +230,7 @@ template<typename ... Ts> std::future<bool> write_async(const char *file_name, - io_format iof = io_format::csv, + io_format iof = io_format::csv, std::streamsize precision = 12, bool columns_only = false, long max_recs = std::numeric_limits::max()) const;