🔹 wordcloud 패키지에서 주로 사용하는 함수 10개 & 샘플 코드1️⃣ 주요 함수 10개 정리 함수설명WordCloud()워드 클라우드 객체 생성generate(text)문자열 데이터를 기반으로 워드 클라우드 생성generate_from_frequencies(freq_dict)단어 빈도수를 기반으로 워드 클라우드 생성recolor()기존 워드 클라우드의 색상을 변경to_file(filename)워드 클라우드를 이미지 파일로 저장to_array()워드 클라우드를 NumPy 배열로 변환fit_words(freq_dict)generate_from_frequencies()와 동일 기능process_text(text)텍스트에서 불필요한 단어를 제거하여 단어 빈도수 반환to_image()워드 클라우드를 P..