Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データセットの列に多くの文字列があり、文字列が相互に比較されて繰り返される回数のスコアを付けたり、評価したり、パーセンテージを取得したりするモデルが必要です。
文字列の度数分布をお探しですか? 単純な R スクリプトを使用すると、非常に迅速に実行できます。したがって、Azure ML では、実行する R モジュールをドラッグ アンド ドロップし、次のスクリプトのようなスクリプトを使用できます。
x=c("A","A","A","B","B","C","D","D") summary(as.factor(x))
x=c("A","A","A","B","B","C","D","D")
summary(as.factor(x))
A B C D 3 2 1 2