Skip to content

doc: Typo in the Website Python Sample code #651

Description

@vibhatha

The website shows the Python sample as follows

from pycylon import read_csv, DataFrame, CylonEnv
from pycylon.net import MPIConfig

config: MPIConfig = MPIConfig()
env: CylonEnv = CylonEnv(config=config, distributed=True)

df1: DataFrame = read_csv('/tmp/csv1.csv')
df2: DataFrame = read_csv('/tmp/csv2.csv')
                
df3: Table = df1.join(other=df2, on=[0], algorithm="hash", env=env)
        
print(df3)

I think the df3: Table must be df3: DataFrame.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingdocumentationImprovements or additions to documentationpriority:lowTasks with low priority

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions