委外專案趨勢-文字雲

讓我們來瞭解一下目前委外專案的趨勢及想法吧!
資料來源:OO委外專案網
資料筆數:804

委外專案趨勢-文字雲


委外專案趨勢-文字雲

雖然資料筆數不多,但可見得目前以 APP, 游戏微信, 网站, 平台為大宗,不過其實很多機會是隱沒在這片雲中的,擁抱他們吧!

後續再取得多一點外包網的資料再來產生一次。

資訊科技


  • Selenium with Python 3 - 使用 Selenium 操作 Firefox 取得資料
dr = webdriver.Firefox()
dr.get('https://www.outsrc.com/projects#')
element = WebDriverWait(dr, 10).until(EC.presence_of_element_located((By.CLASS_NAME, "c11111")))
next_btn = dr.find_element_by_class_name('next')
cnts = dr.find_elements_by_class_name('bbbbb11111')
  • shelve with Python 3 - 因資料不多,使用 shelve 的 key-value 方式快速建立分析資料庫
  • wordcloud with Python 3 - 這裡有個小技倆,如果要顯示中文,要自帶字型路徑。另,可以使用 Stop Words 來把與主題無關的關鍵字遮閉
wc = WordCloud(background_color="white"
, max_words=2000
, random_state=42
,font_path='/usr/share/fonts/truetype/wqy/wqy-zenhei.ttc'
,stopwords=STOP_WORDS,width=800, height=400)

你可能感兴趣的:(委外專案趨勢-文字雲)