Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Airline Dataset
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dhruvang Patel
Airline Dataset
Commits
fb315fc8
Commit
fb315fc8
authored
2 months ago
by
Dhruvang Patel
Browse files
Options
Downloads
Patches
Plain Diff
Update Add_Fake_data.py
parent
a40b0a9e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Add_Fake_data.py
+3
-3
3 additions, 3 deletions
Add_Fake_data.py
with
3 additions
and
3 deletions
Add_Fake_data.py
+
3
−
3
View file @
fb315fc8
...
...
@@ -41,7 +41,7 @@ def add_fake_data_to_csv(file_path, output_path):
# Read the original CSV file
df
=
pd
.
read_csv
(
file_path
)
#
Determine the number of fake rows (25% of the original
data
)
#
Added 25% realistic fake
data
num_rows_to_add
=
int
(
0.25
*
len
(
df
))
# Create a dictionary to store fake data
...
...
@@ -52,14 +52,14 @@ def add_fake_data_to_csv(file_path, output_path):
# Create a DataFrame for the fake data
fake_df
=
pd
.
DataFrame
(
fake_data
)
# Append the fake data to the original DataFrame
combined_df
=
pd
.
concat
([
df
,
fake_df
],
ignore_index
=
True
)
# Save the updated DataFrame to a new CSV file
combined_df
.
to_csv
(
output_path
,
index
=
False
)
except
Exception
as
e
:
# Example usage
# Specify the input and output file paths
input_csv
=
"
Airline_Dataset.csv
"
# Replace with the path to your input CSV file
output_csv
=
"
FakeDataset.csv
"
# Replace with the desired output file path
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment