- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试创建这样的模式:
root
|-- _ehid: string (nullable = true)
|-- duration: double (nullable = true)
|-- list: array (nullable = true)
| |-- element: array (containsNull = true)
| | |-- element: string (containsNull = true)
|-- request.id: string (nullable = true)
但我只能创建那个:
root
|-- _ehid: string (nullable = true)
|-- duration: double (nullable = true)
|-- list: array (nullable = true)
| |-- element: struct (containsNull = true)
| | |-- element: string (nullable = true)
|-- request.id: string (nullable = true)
我看到元素的结构类型而不是数组。当我尝试通过 df.show(10) 查看我的 df 时,我只看到空值。
我的脚本:
schema = StructType([
StructField("_ehid", StringType(), True),
StructField("duration", DoubleType(), True),
StructField("list", ArrayType(StructType([
StructField("element", StringType())
])), True),
StructField("request.id", StringType(), True)])
最佳答案
直接使用StringType
即可:
schema = StructType([
StructField("_ehid", StringType(), True),
StructField("duration", DoubleType(), True),
StructField("list", ArrayType(ArrayType(StringType())), True),
StructField("request.id", StringType(), True)])
关于python - 派斯帕克。如何像那样创建 df.shema?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53959188/
为什么在 Sentry 2 数据库模式中,表之间的关系不存在?例如在 users 和 users_groups 表之间。我必须手动设置吗? 最佳答案 Sentry 将为您创建所需的表,因此您无需进行任
试图为驾驶学校/驾驶教练找到合适类型的结构化数据。根据 Google 的建议,“尽可能使用最具体的 LocalBusiness 子类型;例如,Restaurant、DaySpa、HealthClub
documentation包含鬃毛示例,但没有一个具有 xml 架构的 xsd 属性。有消息告诉我,他们在解析之前验证 xml,但是他们使用什么 shema? 最佳答案 没有 XMLSchema 或
我正在尝试创建这样的模式: root |-- _ehid: string (nullable = true) |-- duration: double (nullable = true) |--
我有 Odata WebApi,我想用那里的数据填充我的下拉列表。我有数据源: var postsDataSource = new kendo.data.DataSource({ 类型:'odata'
我正在尝试创建德国每条道路的列表(包括纬度、经度和街道名称)。 到目前为止,我已经在 osm2pgsql 的帮助下将德国 osm 文件导入到 postgres 数据库中。 所以我要找的是一个可以让我查
有 Spring Boot 应用程序。这是配置: spring flyway: locations: classpath:db/migration baseline-on-migr
我有我创建的图像,我想通过 instagram 应用程序分享它,我应该怎么做? - (IBAction)instagramShareTapped:(UIButton *)sender { UI
我正在使用 Apache poi 来操作 Word 2007 文档。我正在使用 ooxml-shemas-1.0 但有以下消息: Caused by: java.lang.NoSuchMethodEr
我是一名优秀的程序员,十分优秀!