Skip to content

Feature/시각화 코드 작성 #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

anjaaaaeeeellll
Copy link
Contributor

#️⃣ Issue Number

📝 요약(Summary)

💬 To Reviewers (선택)

  • 2,3개의 질문을 던져봤을 때 결과가 나오긴 했는데 다양한 질문 테스트 필요
  • LLMchain 코드에 비효율적인 부분이나 어색한 부분은 없는지.

PR Checklist

  • TBD

reference) How to Code Review

  • 따봉(👍): 리뷰어가 리뷰이의 코드에서 칭찬의 의견을 남기고 싶을 때 사용합니다.
  • 느낌표(❗): 리뷰어가 리뷰이에게 필수적으로 코드 수정을 요청할 때 사용합니다.
  • 물음표 (❓): 리뷰어가 리뷰이에게 의견을 물어보고 싶을 때 사용합니다.
  • 알약 (💊): 리뷰어가 리뷰이의 코드에서 개선된 방법을 제안하지만 그것의 반영이 필수까지는 아닐 때 사용합니다.

@anjaaaaeeeellll anjaaaaeeeellll added the enhancement New feature or request label May 6, 2025
@anjaaaaeeeellll anjaaaaeeeellll self-assigned this May 6, 2025
@anjaaaaeeeellll anjaaaaeeeellll linked an issue May 6, 2025 that may be closed by this pull request
Copy link
Collaborator

@ehddnr301 ehddnr301 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

👍 잘 동작하는것으로 보입니다! 데이터만 좀 정상적이었어도 더 시각화가 풍성했을텐데 아쉽네요!

@DShomin
Copy link
Contributor

DShomin commented May 21, 2025

👍 SQL 실행 잘되는지 확인했습니다.
💊시각화 생성을 LLM이 전적으로 진행하고 있는 부분이 애러를 많이 발생시킬 수도 있을 것 같습니다. 추후에 업데이트하면 좋을 것 같습니다.

graph TD
    A["데이터 샘플 입력"] --> P_Decision{"데이터 전처리 필요?"};

    P_Decision -- 예 (Yes) --> P1["데이터 전처리 수행<br>(결측치 처리, 정규화, 이상치 제거 등)"];
    LLM["🤖 LLM<br>코드 생성 지원"]-.->|전처리 로직 구현 지원| P1;
    P1 --> C{"적절한 시각화 유형 결정"};

    P_Decision -- 아니오 (No) --> C;

    C -- "시간 경과에 따른 추세 분석?" --> D_Line["유형: 선 그래프 (Line Plot)"];
    C -- "범주별 데이터 분포 비교?" --> D_Box["유형: 박스 플롯 (Box Plot)"];
    C -- "두 변수 간 관계 파악?" --> D_Scatter["유형: 산점도 (Scatter Plot)"];
    C -- "항목별 크기/빈도 비교?" --> D_Bar["유형: 막대 그래프 (Bar Chart)"];

    D_Line --> E_Funcs{"사전에 정의된<br>시각화 함수 라이브러리"};
    D_Box --> E_Funcs;
    D_Scatter --> E_Funcs;
    D_Bar --> E_Funcs;

    E_Funcs -- "예: plot_line(data)<br>plot_boxplot(data)<br>plot_scatter(data)<br>plot_barchart(data)" --> F_Exec["선택된 함수로<br>시각화 실행"];
    F_Exec --> G_Result["시각화 결과<br>(차트/그래프) 출력"];
Loading

@ehddnr301 ehddnr301 merged commit 002548e into master May 22, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

보여주는 결과의 확장 필요성 추가 개발
3 participants