我有四个类别的单词列表。每个类别有10个单词。现在我想为列表中的每个单词指定权重。例如,如果一个类别有单词:
disease
fall
have
ventilator
tumour
country
sewing
demo
precaution
analysis
现在,对于每一句话,我都想给予一定的重视。例如,疾病应该给予体重1(通过将10除以10),应该给予体重0.9(通过将9除以10),应该给予0.8等等。如何在R中编写此代码?谁可以在这方面帮助我?提前谢谢。
我希望我的输出为:
Death Malfunction Weight
distance malformed 1
fall unformed 0.9
have intensive 0.8
ventilator malfunctioned 0.7
tumour front 0.6
country icu 0.5
sewing injury 0.4
demo care 0.3
precaution disease 0.2
analysis diagnosis 0.1