Skip to content

Releases: dwreeves/dbt_linreg

v0.3.2

27 Dec 19:35
1db90db

Choose a tag to compare

  • Address deprecation of modules.itertools

v0.3.1

10 Jan 21:37

Choose a tag to compare

  • Fix bug in vars: implementation of method options.

v0.3.0

07 Jan 05:05

Choose a tag to compare

  • Official support for Clickhouse!
  • Rename format= and format_options= to output= and output_options= to make the API consistent with dbt_pca.
  • Allow for setting method and output options globally with vars:

v0.2.6

02 Oct 14:13
990d8b7

Choose a tag to compare

  • Fix bug with group_by on multiple variables; contributed by @svkohler.

v0.2.5

24 Aug 18:40

Choose a tag to compare

  • Fix bug where exog and group_by did not handle str inputs e.g. exog="x".
  • Fix bug where group_by for method='fwl' with exactly 1 exog variable did not work. (Explanation: method='fwl' dispatches to a different macro for the special case of 1 exog variable, and group_by was not implemented correctly here.)
  • Fix bug where safe mode did not work for method='chol'
  • Improved docs by hiding everything except ols(), improved description of ols() macro, and added missing arg.

v0.2.4

14 Jun 21:56
a8fde13

Choose a tag to compare

  • Fix minor incompatibility with Redshift; contributed by @steelcd.

v0.2.3

30 Oct 03:56

Choose a tag to compare

  • Added Postgres support in integration tests + fixed bugs that prevented Postgres from working.

v0.2.2

30 Sep 17:41
bcb3def

Choose a tag to compare

  • Added dbt documentation of the ols() macro.

v0.2.1

09 Jul 22:03

Choose a tag to compare

  • Added .dbtignore

v0.2.0

03 Apr 04:42

Choose a tag to compare

  • Add chol method to dbt_linreg.ols(), and also set as the default method. (This method is significantly faster than fwl, and has a few other benefits.)
  • Add standard error column in long format for chol method.