Skip to content

Instantly share code, notes, and snippets.

@danedavid
Created December 10, 2019 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danedavid/d573fe3df4ae0b3dae4be9b6b81d100e to your computer and use it in GitHub Desktop.
Save danedavid/d573fe3df4ae0b3dae4be9b6b81d100e to your computer and use it in GitHub Desktop.
Stop words & punctuations used by MS PowerBI
{
"Punctuations": [
"!", ".", ":", "'", ";", ",", "?",
"@", "#", "$", "%", "^", "&", "*",
"(", ")", "[", "]", "\"", "\\", "/",
"-", "_", "+", "=", "<", ">", "|"
],
"StopWords": [
"a", "able", "about", "across", "after", "all", "almost", "also", "am", "among", "an",
"and", "any", "are", "as", "at", "be", "because", "been", "but", "by", "can", "cannot",
"could", "did", "do", "does", "either", "else", "ever", "every", "for", "from", "get",
"got", "had", "has", "have", "he", "her", "hers", "him", "his", "how", "however", "i",
"if", "in", "into", "is", "it", "its", "just", "least", "let", "like", "likely", "may",
"me", "might", "most", "must", "my", "neither", "no", "nor", "not", "of", "off", "often",
"on", "only", "or", "other", "our", "own", "rather", "said", "say", "says", "she", "should",
"since", "so", "some", "than", "that", "the", "their", "them", "then", "there", "these",
"they", "this", "tis", "to", "too", "twas", "us", "wants", "was", "we", "were", "what",
"when", "where", "which", "while", "who", "whom", "why", "will", "with", "would", "yet",
"you", "your"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment