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
Andrew Schell Twitter [#datatalking](https://twitter.com/hashtag/datatalking) - Email [[email protected]](mailto:[email protected]) | |
**Salesforce Admin – Google Analytics – Data Marketing Analyst** | |
Seeking an analyst or technical big data position at a growing company. I work best with action based teams to accomplish goals vs doing theoretical research. In finance I developed a process that tells me with 84% confidence which customers are likely to churn and I am well versed in business development as well as the Analytics supporting Sales. Current pro bono projects are administration of a Salesforce Org for a nonprofit and my artificial intelligence prototype that helps disabled children | |
**Subject Matter Expert:** | |
**Business Intelligence**** Analysis** |
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
#!/usr/bin/python | |
"""Convert CSV table to MindMap format | |
Usage: python csv_to_mm.py sometable.csv > mymap.mm | |
CSV format is rows representing tree leaves, e.g.: | |
A1, | |
A1,B1 | |
A1,B1,C1 | |
A1,B1,C2 |
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
from scipy.stats.distributions import binom | |
data = [ | |
{'name': 'ISTJ', 'count': 12, 'expected': 0.1160}, | |
{'name': 'ISFJ', 'count': 4, 'expected': 0.1380}, | |
{'name': 'INFJ', 'count': 14, 'expected': 0.0150}, | |
{'name': 'INTJ', 'count': 206, 'expected': 0.0210}, | |
{'name': 'ISTP', 'count': 16, 'expected': 0.0540}, | |
{'name': 'ISFP', 'count': 1, 'expected': 0.0880}, | |
{'name': 'INFP', 'count': 56, 'expected': 0.0430}, |
NewerOlder