Brightics 하드코딩 데이터 입력

1 개요[ | ]

Brightics 하드코딩 데이터 입력

2 방법1: Create Table[ | ]

3 방법2: Python Script[ | ]

import io
import pandas as pd

csv="""
Sepal.Length,Petal.Length,Species
5.1, 1.4, setosa
4.9, 1.4, setosa
4.7, 1.3, setosa
"""

df = pd.read_csv(io.StringIO(csv))

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}