Include regression between 2.x and 3.x with dynamicPartials: false
See original GitHub issueUpgraded to 3.x and a test case started failing for me that worked in 2.x, looks like this:
{% include included-data.html, myVariable: 'myValue' %}
ENOENT: Failed to lookup included-data.html, in: test/stubs/_includes, line:1
Thank you!
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (10 by maintainers)
Top Results From Across the Web
Regression with Two Independent Variables
Note how variable X3 is substantially correlated with Y, but also with X1 and X2. This means that X3 contributes nothing new or...
Read more >5.3 - The Multiple Linear Regression Model | STAT 462
This simply means that each parameter multiplies an x-variable, while the regression function is a sum of these "parameter times x-variable" terms.
Read more >Chapter 7: Correlation and Simple Linear Regression
Plot 1 shows little linear relationship between x and y variables. Plot 2 shows a strong non-linear relationship. Pearson's linear correlation coefficient ...
Read more >Simple Linear Regression
The simplest deterministic mathematical relationship between two variables x and y is a linear relationship: y = β0. + β1 x. The objective...
Read more >Multiple Regression
If X2 and X3 remain the same, this indicates that for each extra person in the population, the number of yearly traffic fatalities...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I believe jekyll uses the shopify/liquid as its renderer, but they’re different actually:
{% include "included-data.html", myVariable: 'myValue' %}
{% include included-data.html myVariable="myValue" %}
, see https://help.shopify.com/themes/liquid/tags/theme-tags#includeSince keeping compatible to shopify/liquid is priority, I’ll make some changes or even options (if necessary) to make it compatible to Jekyll at the same time, if I can. As in this case, the
,
will be treated as a separator, but=
will keep as it is.This looks great, thank you very much! We’re on 4.0 now 👍