To be clear, you're referring to the Python version of the example.
Yes it should be True.
Can you open a pull request to fix it? the docs are under docs/ in the
apache/spark github repo. That's how we normally take fixes.

On Sat, Feb 8, 2020 at 9:14 AM Tanay Banerjee <tanay.baner...@gmail.com> wrote:
>
>
>> Hi Team,
>>
>> I have found out below incorrect code which will lead to error "NameError: 
>> name 'true' is not defined". As true is the the parameter required but 'True'
>>
>> All the details are provided below.
>>
>> URL: https://spark.apache.org/docs/latest/ml-datasource
>>
>> Issue:
>>
>> true -> TRUE
>> df = spark.read.format("image").option("dropInvalid", 
>> true).load("data/mllib/images/origin/kittens")
>>
>> After Correction:
>> df = spark.read.format("image").option("dropInvalid", 
>> True).load("data/mllib/images/origin/kittens")
>>
>> regards,
>> Tanay

---------------------------------------------------------------------
To unsubscribe e-mail: dev-unsubscr...@spark.apache.org

Reply via email to