我从未使用过plone,但我需要编辑一个表单来添加字段。我已经到处寻找,但我找不到任何要做的事,是from pyspark.sql.functions import UserDefinedFunction
from pyspark.sql.types import DoubleType
udf = UserDefinedFunction(lambda x: str.count(x.alias(name)), DoubleType())
df_with_new_column = nonull_df.withColumn('name_length', udf())
print df_with_new_column.show()
吗?
这是我们公司遇到的一个大问题,上一个程序员逃跑了,给我们留下了Plone:\
感谢。
答案 0 :(得分:1)
class IMyForm(form.Schema):
""" Define form fields """
name = schema.TextLine(
title=u"Your name",
)