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
def estimate_net_income(gender: str, race: str, age: int, | |
education: str, occupation: str, | |
location: str, experience: int, | |
sexual_orientation: str, | |
disability_status: bool, | |
is_trans: bool, | |
family_status: str) -> float: | |
# Set base income to $40,000 | |
income = 40000 | |
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
import fetch from 'node-fetch' | |
import * as app from 'firebase-admin/app' | |
type ListDocumentResult = ExistingListDocumentResult | EmptyListDocumentResult | |
type json = any | |
interface ExistingListDocumentResult extends EmptyListDocumentResult{ | |
fields: Record<string,any> | |
createTime: string, | |
updateTime: string |
OlderNewer