We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fae1f68 commit dde4eceCopy full SHA for dde4ece
zipdcm/README.md
@@ -7,7 +7,8 @@ Read DICOM file metadata from a zip file archive.
7
from dbx.zip_dcm_ds import ZipDCMDataSource
8
spark.dataSource.register(ZipDCMDataSource)
9
10
-df = spark.read.format("zipdcm").load("./resources")
+# read DCMs with `numPartitions` parallelism.
11
+df = spark.read.format("zipdcm").option('numPartitions',4).load("./resources")
12
df.display()
13
```
14
For more, see our [demo]($./demo) notebook.
0 commit comments