Dictionary of Frequently-Used Taiwan Minnan/Monosyllables: Difference between revisions

From Taioaan Wiki
Jump to navigation Jump to search
(→‎Method: plot)
Line 4: Line 4:
We isolated 2,936 rows from the dictionary that are monosyllables and converted their TRS to MTL. We only considered words from the first section of the dictionary because they appear to be frequently used, and ignored the second section. Then we counted the frequency of each MTL with Python's collections.Counter, which tells the number of dictionary rows matching each MTL, and got 1,813 unique MTL. Then we used Counter again on those results and found:  
We isolated 2,936 rows from the dictionary that are monosyllables and converted their TRS to MTL. We only considered words from the first section of the dictionary because they appear to be frequently used, and ignored the second section. Then we counted the frequency of each MTL with Python's collections.Counter, which tells the number of dictionary rows matching each MTL, and got 1,813 unique MTL. Then we used Counter again on those results and found:  
* 1103 MTL (61%) and 1103 rows (38%) uniquely match one-to-one
* 1103 MTL (61%) and 1103 rows (38%) uniquely match one-to-one
* as expected, many MTL (710, or 39%) match more than one row, affecting 1833 rows (62%):
* as expected, most rows (1833 or 62%) have at least one homonym. Out of the corresponding 710 MTL (39%):  
** ''{{x|lie}}'', ''{{x|ky}}'', ''{{x|køf}}'', match the most (7 rows each)
** ''{{x|lie}}'', ''{{x|ky}}'', and ''{{x|køf}}'' match the most (7 rows each), and ''{{x|cie}}'', ''{{x|kafn}}'', ''{{x|kefng}}'', ''{{x|sefng}}'', ''{{x|kaf}}'', ''{{x|kaq}}'', ''{{x|zngf}}'', ''{{x|ti}}'', ''{{x|sw}}'', ''{{x|leeng}}'', and ''{{x|kerng}}'' match 6 rows each
** ''{{x|cie}}'', ''{{x|kafn}}'', ''{{x|kefng}}'', ''{{x|sefng}}'', ''{{x|kaf}}'', ''{{x|kaq}}'', ''{{x|zngf}}'', ''{{x|ti}}'', ''{{x|sw}}'', ''{{x|leeng}}'', ''{{x|kerng}}'', match 6 rows each
** most of the homonyms cover two rows (443 MTL (24%), 886 rows (30%))
** a lot of MTL match up twice (443 MTL (24%) match 2 rows (30% rows))
** some MTL cover three rows (173 MTL (10%), 519 rows (18%))
** some MTL match up thrice (173 MTL (10%) match 3 rows (18% rows))
** a small fraction match up four to seven rows (94 MTL (5%), 428 rows (15%))
** a small percentage match up more than thrice (94 MTL (5%) match 4 to 7 rows (15% rows))
[[File:rows and matching MTL vs. match level.png|thumb|none]]
[[File:rows and matching MTL vs. match level.png|thumb|none]]



Revision as of 00:31, 29 August 2018

A lot of Taiwanese monosyllables are homonyms: same sound, different meaning. How many homonyms does Taiwanese have? To help answer the question, we singled out monosyllables from the Dictionary of Frequently-Used Taiwan Minnan (MoeDict) and did some analysis.

Method

We isolated 2,936 rows from the dictionary that are monosyllables and converted their TRS to MTL. We only considered words from the first section of the dictionary because they appear to be frequently used, and ignored the second section. Then we counted the frequency of each MTL with Python's collections.Counter, which tells the number of dictionary rows matching each MTL, and got 1,813 unique MTL. Then we used Counter again on those results and found:

  • 1103 MTL (61%) and 1103 rows (38%) uniquely match one-to-one
  • as expected, most rows (1833 or 62%) have at least one homonym. Out of the corresponding 710 MTL (39%):
    • lie, ky, and køf match the most (7 rows each), and cie, kafn, kefng, sefng, kaf, kaq, zngf, ti, sw, leeng, and kerng match 6 rows each
    • most of the homonyms cover two rows (443 MTL (24%), 886 rows (30%))
    • some MTL cover three rows (173 MTL (10%), 519 rows (18%))
    • a small fraction match up four to seven rows (94 MTL (5%), 428 rows (15%))

Data

See also