'Pandas' hot to globe-trot

2021-01-12 中國日報網

Download

Two dozen eager semifinalists from North America gathered in Washington on Tuesday to compete for positions as panda ambassadors, also known as Pambassadors.

All were hoping to be selected as one of three globe-trotting winners who will spread the panda conservation concept and visit Chengdu, capital city of Sichuan province and home of the pandas.

The 24 semifinalists were scheduled to participate in a series of challenges on Tuesday and Wednesday in which their panda knowledge, physical strength, communications skills and team-working abilities would be tested.

The 2012 Global Pambassador program - a three-month competition organized by the Chengdu Research Base of Giant Panda Breeding in partnership with WildAid, an organization focusing on stopping illegal wildlife trade, and the Yao Ming Foundation - aims to develop global awareness of giant panda conservation.

A total of 255,412 overseas contestants registered for the contest on Facebook, of whom 59,174 were from the United States.

After the online "PandaQuest" competition, 24 regional winners are chosen in each region, including Europe, North America, the Asia-Pacific region and the Chinese mainland. Four finalists from each region make it to the final competition in Chengdu.

The three winners will serve as Chengdu Pambassadors for one year and participate in a Global Panda Conservation Tour in 2013. They will take a unique journey into the natural habitat of wild pandas and participate in panda-release programs designed to reintroduce captive bears into the wild.

Questions:

1. How many people competed in the semifinal?

2. What position are they competing for?

3. How many people registered for the contest?

Answers:

1. 24.

2. Panda ambassadors, also known as Pambassadors.

3. 255,412.

(中國日報網英語點津 Helen 編輯)

About the broadcaster:

Lee Hannon is Chief Editor at China Daily with 15-years experience in print and broadcast journalism. Born in England, Lee has traveled extensively around the world as a journalist including four years as a senior editor in Los Angeles. He now lives in Beijing and is happy to move to China and join the China Daily team.

相關焦點

  • pandas基礎教程2
    選擇數據:我們在前面說pandas就像字典一樣,字典是可以通過鍵去選擇數據,同樣的pandas也是可以得,且pandas更強。DataFrame中的數據有兩個選取方式,df['A']或者df.A都可以,具體使用什麼方式看你的心情。
  • Python學習120課 pandas簡介kaggle下載數據及pandas讀取外部數據
    現在我們開始學習pandas,pandas一般用的更多,pandas是基於numpy去寫的。pandas是一個專門做數據結構和數據分析的庫。●pandas的安裝推薦使用anaconda,只要安裝了anaconda,它裡面就會自帶pandas,這會為我們省去很多的麻煩。接下來就是用pandas去處理數據,數據從哪來呢?
  • PANDAS: 新手教程 一
    # 如果你使用的是Anacondaconda install -c conda-forge pandas# 使用pip安裝Pandaspip install pandas# 導入pandasimport pandas as pd在這個練習中,我將使用著名的鐵達尼號數據集。
  • 【跟著stackoverflow學Pandas】- Pandas修改列的類型
    Pandas: change data type of columns - Pandas修改列的類型我們利用pandas進行數據處理經常會遇到數據類型不符的問題
  • 難道是 「hot hot hot」?!
    「hot hot hot」?聽起來很有道理的亞子……特色街邊小吃英文匯總麻辣燙01▲spicy hot pot麻辣燙☆ Sichuanspicy hot pot in the application of pepper is denied.
  • pandas基礎教程1
    Pandas是基於Numpy構建的(不知道pandas和我們的國寶有什麼關係),而Numpy和Pandas的數據類型是在基礎數據類型上建立,彼此相關,又彼此不同。Numpy對象最重要特點向量化運算,pandas對象最重要特點是字典和列表混合。
  • pandas指南:做更高效的數據科學家
    今天我要告訴你們的是:在數據科學中,有一個軟體包是你們絕對需要學習的,那就是pandas。而pandas真正有趣的地方是,很多其他的包也在裡面。pandas是一個核心包,因此它具有來自其他各種包的特性。pandas類似於Python中的Excel:它使用表(即DataFrame)並對數據進行轉換,但它還能做更多。
  • Pandas的介紹與基本使用
    1、什麼是Pandas當大家談論到數據分析時,提及最多的語言就是Python和SQL,而Python之所以適合做數據分析,就是因為他有很多強大的第三方庫來協助,pandas就是其中之一,它是基於Numpy構建的,正因pandas的出現,讓Python語言也成為使用最廣泛而且強大的數據分析環境之一。
  • 嫌pandas慢又不想改代碼怎麼辦?來試試Modin
    pandas仍將使用單核,而modin將使用全部核。以下是144核心計算機上read_csv操作下,pandas和modin的性能比較。pandas有一個很明顯的線性增長,這是因為它一直只使用一個核。可能很難看到綠色條紋,因為modin的運行時間非常短。Modin的架構我們來看看Modin的架構。
  • PANDAS: 新手教程 一 - 人工智慧遇見磐創
    # 如果你使用的是Anacondaconda install -c conda-forge pandas# 使用pip安裝Pandaspip install pandas# 導入pandasimport pandas as pd在這個練習中,我將使用著名的鐵達尼號數據集。
  • 教程| pandas輕鬆入門 之 數據結構介紹 1
    pandas經常和其它工具一同使用,如數值計算工具NumPy和SciPy,分析庫statsmodels和scikit-learn,和數據可視化庫matplotlib。pandas是基於NumPy數組構建的,特別是基於數組的函數和不使用for循環的數據處理。雖然pandas採用了大量的NumPy編碼風格,但二者最大的不同是pandas是專門為處理表格和混雜數據設計的。
  • 圖解四個實用的pandas函數!
    作者:Baijayanta Roy來源:towardsdatascience編譯&內容補充:早起Python在用python進行機器學習或者日常的數據處理中,pandas是最常用的Python庫之一,熟練掌握pandas是每一個數據科學家的必備技能,本文將用代碼+圖片詳解Pandas中的四個實用函數!
  • Python數據分析:pandas讀取和寫入數據
    pandas讀取這些數據文件的方法如表格所示:01讀取寫入文本文件read_csv()方法用來讀取 csv格式的數據文件,read_table()方法則是讀取通用分隔符分隔的數據文件,它們的參數相同。而Python的數據分析庫pandas提供了read_excel函數來讀取.xls和.xlsx兩種excel文件。其中.xls是office excel 2007之前的版本默認保存的文件擴展名。而.xlsx是2007版本之後的。 有時一個excel文件會包含多個工作表,比如下面這個表格文有book和movie兩個工作表。
  • 懶人秘籍:教你如何避免編寫pandas代碼
    而大家都在儘可能地避免這種懸崖峭壁,結果可想而知,都轉向了如何避免編寫pandas代碼。在過去4年裡,筆者一直使用pandas作為數據分析的主要工具。必須承認,「如何避免編寫pandas代碼」的大部分內容來自於使用pandas編程的起步階段。在進行代碼審閱時,筆者仍然看到許多經驗豐富的程式設計師在看一些熱門「如何避免使用」的帖子。
  • 從小白到大師,這裡有一份Pandas入門指南
    /pandas-docs/stable/reference/api/pandas.read_csv.html)中參數設定為 chunksize=N,這會返回一個可以輸出 DataFrame 對象的迭代器。
  • pandas庫中最重要的幾個知識點
    數據分析系列文章之Python基礎篇Python數據分析系列文章之NumpyPython數據分析系列文章之Pandas(上)Python數據分析系列文章之Pandas(下)Python數據分析系列文章之ScipyPython數據分析系列文章之MatplotlibPython數據分析系列文章之SeabornPython數據分析系列文章之PoltyPython數據分析系列文章之datetime本篇主要介紹pandas
  • 幾個Pandas參數設置小技巧
    在日常使用pandas的過程中,由於我們所分析的數據表規模、格式上的差異,使得同樣的函數或方法作用在不同數據上的效果存在差異。而pandas有著自己的一套「參數設置系統」,可以幫助我們在遇到不同的數據時靈活調節從而達到最好的效果,本文就將介紹pandas中常用的參數設置方面的知識
  • 如何使用Pandas-Profiling進行探索性數據分析
    pandas_profiling使用df.profile_report()擴展了DataFrame,以便進行快速數據分析。每一列的以下統計數據(如果與列類型相關)都顯示在交互式HTML報告中:類型推斷:檢測DataFrame中列的類型。
  • 6個提升效率的pandas小技巧
    pandas是python中常用的數據分析庫,出現頻率非常高,而且pandas功能之多讓人咋舌,即使pandas老手也沒法保證能高效使用pandas做數據分析。這篇文章目的梳理幾個高效實用的pandas小技巧,供大家參考。1.
  • 如何通過一頓飯來說明NumPy與pandas的功用
    而在這股勢力中,其主角及成員便是NumPy、pandas、matplotlib以及scipy。本文要簡單介紹的則是主力中的主力:NumPy與pandas。誠然,R語言幾乎專注於統計分析,其第三方包無數,有著統計學的深度以及各學科統計分析應用的廣度,並且也在與Python的較量中不甘示弱。