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

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

# 리포트 만들기

<Note>
  W\&B Report and Workspace API는 공개 프리뷰 상태입니다.
</Note>

W\&B Reports를 사용하면 Runs의 인사이트, 결과, 시각화를 공동 작업자와 공유할 수 있습니다. 프로젝트 Workspace, **Reports** 탭 또는 Report and Workspace API를 사용해 프로그래밍 방식으로 리포트를 만드세요. 시작하려면 탭을 선택하세요.

프로그래밍 방식 예시는 [Report 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-sdk-testing-latest/9bGjVEZnWlpBI-9p/images/reports/create_a_report_button.png?fit=max&auto=format&n=9bGjVEZnWlpBI-9p&q=85&s=4d8e5ca6fe003e8536c688986a28210f" alt="리포트 만들기 버튼" width="2510" height="462" data-path="images/reports/create_a_report_button.png" />
           </Frame>

    3. 모달이 나타나면 처음에 포함할 차트를 선택하세요. 차트는 나중에 리포트 인터페이스에서 추가하거나 제거할 수 있습니다.

           <Frame>
             <img src="https://mintcdn.com/wb-21fd5541-sdk-testing-latest/H06KgVKW2CsyczDM/images/reports/create_a_report_modal.png?fit=max&auto=format&n=H06KgVKW2CsyczDM&q=85&s=3535b9a4e2136c51f4b86f43219d76bc" alt="차트 선택 옵션이 있는 리포트 만들기 모달" width="920" height="840" data-path="images/reports/create_a_report_modal.png" />
           </Frame>

    4. W\&B가 리포트에 더 많은 Runs를 추가하지 않도록 하려면 **Filter run sets**를 선택하세요. W\&B는 리포트 초안을 자동으로 저장합니다. 저장된 초안은 **Reports** 탭에서 확인할 수 있습니다.
  </Tab>

  <Tab title="Report tab">
    1. W\&B App에서 프로젝트 Workspace로 이동하세요.
    2. 프로젝트에서 **Reports** 탭을 선택하세요.
    3. **Create report**를 클릭하세요.

           <Frame>
             <img src="https://mintcdn.com/wb-21fd5541-sdk-testing-latest/H06KgVKW2CsyczDM/images/reports/create_report_button.png?fit=max&auto=format&n=H06KgVKW2CsyczDM&q=85&s=ea65b006b27998ef35bbfa59db4383e9" 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. W\&B Python SDK와 Report and Workspace API를 임포트하세요:
       ```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. 리포트를 저장하세요. W\&B는 `.save()` 메서드를 호출하기 전까지 리포트를 업로드하지 않습니다:
       ```python theme={null}
       report.save()
       ```

    자세한 내용은 [리포트 편집](/ko/models/reports/edit-a-report)을 참조하세요.
  </Tab>
</Tabs>
