Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/LoopyLuci/Skills --skill bigquery-bigframes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | bigquery-bigframes |
| description | >- |
Trigger: Use when working with Google Cloud Bigquery Bigframes — setup, configuration, and best practices.
BigFrames is a Python library that lets you take advantage of BigQuery data processing by using familiar Python APIs.
import bigframes.pandas as bpd
bpd.options.bigquery.ordering_mode = 'partial'
peek() for data preview: Use peek(n) to preview data instead of
head(n). peek(n) randomly samples n rows and is significantly faster.
head(n) returns rows in strict order and fails in partial ordering mode
unless the DataFrame has been explicitly sorted.to_pandas() download all
data to client memory, bypassing BigQuery’s distributed computation and
risking Out of Memory (OOM) errors. Do not materialize data locally unless:
read_gbq() if a DataFrame/Series method achieves the same result, as it
breaks the Pandas abstraction and prevents lazy query execution.df.col.str.*, df.col.dt.*) instead of
remote User Defined Functions (UDFs). UDFs require extra resources and
time to deploy.Series.map() or DataFrame.apply(). These
methods do not accept functions without udf or remote_function
decorators.# Avoid:
df["upper"] = df["name"].map(lambda x: x.upper())
# Prefer:
df["upper"] = df["name"].str.upper()
.dtypes and inspect sample records using
display() with .peek()..plot accessor. If the dataset is too large to plot,
aggregate or sample the data before calling
.to_pandas() to plot locally.bigframes.bigquery.ml package: Do not use Scikit-learn or other ML
libraries with BigQuery DataFrames. Standard Scikit-learn models require
bringing data into local client memory, whereas bigframes.bigquery.ml
delegates training directly to BigQuery's scalable ML engine. Import functions
from bigframes.bigquery.ml.The BigFrames ML package (bigframes.ml) is a legacy package that mimics the
scikit-learn API but is no longer recommended for new projects. Only use this
package if the user explicitly requests BigFrames ML.
bigframes.ml instead of bigframes.bigquery.ml.predict() method always returns a DataFrame containing both predictions
and features, rather than a single series of predictions.random_state: Do not pass a random_state argument when
instantiating BigFrames ML models, as this parameter is not supported in the
BigFrames ML package.OneHotEncoder or StandardScaler unless
explicitly requested, as scaling is handled automatically.GridSearchCV or RandomizedSearchCV.bigframes.ml.forecasting.transform() method. Use predict()
instead.model.to_gbq(). To load a
persisted model, use bpd.read_gbq_model().