bigframes.pandas.deploy_udf#
- bigframes.pandas.deploy_udf(func, **kwargs)[source]#
Orchestrates the creation of a BigQuery UDF that deploys immediately.
This method ensures that the UDF is created and available for use in BigQuery as soon as this call is made.
- Parameters:
func – Function to deploy.
kwargs – All arguments are passed directly to
udf(). Please see its docstring for parameter details.
- Returns:
A wrapped Python user defined function, usable in
apply().