워드 클라우드의 방향
워드 클라우드는 가독성을 고려하여 일반적으로 텍스트를 가로로 유지합니다.
In[1]:=

input = ExampleData[{"Text", "AliceInWonderland"}];
In[2]:=

WordCloud[input, ImageSize -> Medium]
Out[2]=

단어를 가로 혹은 세로로 위치 할 수 있게합니다.
In[3]:=

WordCloud[input, WordOrientation -> "HorizontalVertical",
ImageSize -> Medium]
Out[3]=

단어를 회전할 수 있는 각도를 지정합니다.
In[4]:=

WordCloud[input, WordOrientation -> {{0, \[Pi]/3}},
ImageSize -> Medium]
Out[4]=

어떤 방향도 허용됩니다.
In[5]:=

WordCloud[input, WordOrientation -> "Random", ImageSize -> Medium]
Out[5]=
