This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#CONDITIONAL INDEPENDENCE | |
conditional independence is the same as normal independence, but restricted to the case where you know that a certain condition is | |
or isn't fulfilled. Not only can you not find out about A by finding out about B in general (normal independence), but you also | |
can't do so under the condition that there's a snow storm (conditional independence). | |
source: http://math.stackexchange.com/questions/23093/could-someone-explain-conditional-independence | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Python interative data viz | |
http://walkerke.github.io/geog30323/slides/interactive/#/ | |
https://s3.amazonaws.com/quandl-static-content/Documents/Quandl+-+Pandas,+SciPy,+NumPy+Cheat+Sheet.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#multiple condition using where VARIABLE in (Values), see example: | |
SELECT name, population FROM world | |
WHERE name in ('France', 'Germany' , 'Italy') | |
#if conditions includes more than one varibale, see example: | |
SELECT name, population, area FROM world | |
WHERE (area >3000000 and population < 250000000) or (area <3000000 and population > 250000000) | |
#if looking for partial value, use VARIABLE like "%", see example: | |
SELECT name FROM world | |
WHERE name like "United%" |
NewerOlder