at this point i just really want a good programmer to come in and fix all my code and pat me on the head and make everything okay cause im about to start crying from frustration here
ive hit the point where i got 90% of what i need to do finished, but the code is messy and weird and slow, and the last tiny 10% is confusing af and i cant get the motivation to do it cause its only the last bit and i just wanna be saved by an all powerful diety
re: ppl saying make dummy data, I'd have to figure out how, while preserving the (many hundreds of) column names, and then somehow keeping the same type of data in each column, within the same range (some issues i have is confused data ranges)
If it's a mysql database you can export the database schema (format of the tables without any data) rather easily.
Then whoever looks at your code can generate dummy data themselves.
In python, say each column in your dataset has integer ranges. df is your dataframe.
You can do
new_df = pd.DataFrame()
for i in df.columns:
min = np.min(df[i])
max = np.max(df[i])
new_df[i] = np.random.randint(min,max,len(df))