Stefano
Stefano
The steps described [here](https://github.com/c0b/docker-elixir/wiki/use-observer) didn't work for me and it took me quite a bit of fiddling and duckduckgoing around to make the observer work on my machine - I'm...
Minimal examples ```python dag = CausalGraphicalModel( nodes=["E", "U", "W"], edges=[("E", "W"), ("U", "W")], ) dag.get_all_backdoor_adjustment_sets("E", "W") # expected: {frozenset()} # actual: {frozenset(), frozenset({'U'})} ``` I double checked this in R...
I couldn't find any documentation of flags and I ended up looking at the code. It wasn't clear to me from the current docs: 1. what was the top-level object...
Hi Joel, Thanks very much for this library, it's extremely useful and it works just fine. One issue I had though is that it always requires ActionBarSherlock as a dependency...
Given the following pipeline ```yaml steps: - command: echo 'I should not be executed' if: false ``` the step isn't ignored when running `bk local run`. Same with other false...
Adds the possibility to append an [application id suffix](http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Types) to the current application id. The suffix must start with a '.' character, in order to reflect the way it is...