This file contains hidden or 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
    
  
  
    
  | pip install streamlit | |
| pip install spacy | |
| python -m spacy download en_core_web_sm | |
| python -m spacy download en_core_web_md | |
| python -m spacy download de_core_news_sm | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.
      
    
  
    
      This file contains hidden or 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 os | |
| import codecs | |
| data_directory = os.path.join('..', 'data', | |
| 'yelp_dataset_challenge_academic_dataset') | |
| businesses_filepath = os.path.join(data_directory, | |
| 'yelp_academic_dataset_business.json') | |
| with codecs.open(businesses_filepath, encoding='utf_8') as f: | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.
      
    
  
    
      This file contains hidden or 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
    
  
  
    
  | /****************************************/ | |
| /* Example of using JSON libname engine */ | |
| /* for discovery, then with a JSON map */ | |
| /* Copyright 2016 SAS Institute */ | |
| /* written by Chris Hemedinger */ | |
| /* http://blogs.sas.com/sasdummy */ | |
| /****************************************/ | |
| /* split URL for readability */ | |
| %let url1=http://communities.sas.com/kntur85557/restapi/vc/categories/id/bi/topics/recent; |