Skip to content

Commit

Permalink
Update README.md (#475)
Browse files Browse the repository at this point in the history
corrected example to `avoid NameError`
  • Loading branch information
ravi77o authored Jun 2, 2022
1 parent b417c42 commit e76ba5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ from dataprofiler import Data, Profiler

# Load a CSV file with a schema
data1 = Data("file_a.csv")
profile1 = Profiler(data)
profile1 = Profiler(data1)

# Load another CSV file with the same schema
data2 = Data("file_b.csv")
profile2 = Profiler(data)
profile2 = Profiler(data2)

profile3 = profile1 + profile2

Expand Down

0 comments on commit e76ba5b

Please sign in to comment.