> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-1917.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> W&B App 또는 프로그래밍 방식으로 W&B 리포트를 만드세요.

# 리포트 만들기

<Note>
  W\&B Report and Workspace API는 Public Preview 상태입니다.
</Note>

아래 탭을 선택해 W\&B App에서 또는 W\&B Report and Workspace API를 사용해 프로그래밍 방식으로 리포트를 만드는 방법을 알아보세요.

프로그래밍 방식으로 리포트를 만드는 방법의 예시는 이 [Google Colab](https://colab.research.google.com/github/wandb/examples/blob/master/colabs/intro/Report_API_Quickstart.ipynb)을 참조하세요.

<Tabs>
  <Tab title="W&B App">
    1. W\&B App에서 프로젝트 Workspace로 이동합니다.

    2. Workspace 오른쪽 상단에서 **Create report**를 클릭합니다.

           <Frame>
             <img src="https://mintcdn.com/wb-21fd5541-docs-1917/8VD6VPTVGvajJ-Nt/images/reports/create_a_report_button.png?fit=max&auto=format&n=8VD6VPTVGvajJ-Nt&q=85&s=176a64411893387763806642d0009bc3" alt="리포트 만들기 버튼" width="2510" height="462" data-path="images/reports/create_a_report_button.png" />
           </Frame>

    3. 모달이 표시됩니다. 시작할 때 사용할 chart를 선택합니다. 나중에 리포트 인터페이스에서 chart를 추가하거나 삭제할 수 있습니다.

           <Frame>
             <img src="https://mintcdn.com/wb-21fd5541-docs-1917/8VD6VPTVGvajJ-Nt/images/reports/create_a_report_modal.png?fit=max&auto=format&n=8VD6VPTVGvajJ-Nt&q=85&s=2ae4ce7925d946a74e8e7e6ee3fd7989" alt="리포트 만들기 모달" width="920" height="840" data-path="images/reports/create_a_report_modal.png" />
           </Frame>

    4. 새 Runs가 리포트에 추가되지 않도록 하려면 **Filter run sets** 옵션을 선택합니다. 이 옵션은 켜거나 끌 수 있습니다. **Create report**를 클릭하면 초안 리포트가 리포트 탭에 생성되며, 계속 작업할 수 있습니다.
  </Tab>

  <Tab title="Report tab">
    1. W\&B App에서 프로젝트 Workspace로 이동합니다.
    2. 프로젝트에서 **Reports** 탭(클립보드 이미지)을 선택합니다.
    3. 리포트 페이지에서 **Create Report** 버튼을 선택합니다.

           <Frame>
             <img src="https://mintcdn.com/wb-21fd5541-docs-1917/8VD6VPTVGvajJ-Nt/images/reports/create_report_button.png?fit=max&auto=format&n=8VD6VPTVGvajJ-Nt&q=85&s=a1252e67162e710676047208c2da6031" alt="리포트 만들기 버튼" width="2542" height="1614" data-path="images/reports/create_report_button.png" />
           </Frame>
  </Tab>

  <Tab title="Report and Workspace API">
    프로그래밍 방식으로 리포트를 만듭니다:

    1. W\&B SDK(`wandb`)와 Report and Workspace API(`wandb-workspaces`)를 설치합니다:
       ```bash theme={null}
       pip install wandb wandb-workspaces
       ```

    2. 다음으로, workspaces를 임포트합니다.
       ```python theme={null}
       import wandb
       import wandb_workspaces.reports.v2 as wr
       ```

    3. `wandb_workspaces.reports.v2.Report`를 사용해 리포트를 만듭니다. Report Class Public API([`wandb.apis.reports`](/ko/models/ref/python/public-api/api#reports))로 리포트 인스턴스를 생성합니다. 프로젝트 이름을 지정합니다.
       ```python theme={null}
       report = wr.Report(project="report_standard")
       ```

    4. 리포트를 저장합니다. `.save()` method를 call하기 전까지 Reports는 W\&B Server에 업로드되지 않습니다:
       ```python theme={null}
       report.save()
       ```

    App UI에서 대화형으로 또는 프로그래밍 방식으로 리포트를 편집하는 방법에 대한 자세한 내용은 [리포트 편집](/ko/models/reports/edit-a-report/)을 참조하세요.
  </Tab>
</Tabs>
