I know this is basic but I am really struggling on how to get started and am so so so frustrated.
I have developed the basis of my app on my windows pc using juypter notebooks and now want to start working in a cloud environment. I have no clue where to start and have looked at so much but the basics don't seem to be covered.
The data to run this on is here - named JJO_Xsens_210513.csv
A very basic version of what I am trying to do is within this snippet:
import pandas as pd
import numpy as np
df = pd.read_csv("JJO_Xsens_210513.csv", skiprows=1)
df["Keep"] = np.where(df.Acc_X <= -50,1,0)
df_to_write = df[df.Keep ==1]
A long long way down the road, there should be an upload functionality and then the preprocessing code is run and the data is then summarised in many different ways to give insights which are delivered by charts and apps. I know I can (in theory) build cloud functions, and look at persistent data storage, and building a web app / web site for all of this.
I have looked at the tutorials on GCP for App Engine, looked at tutorials for python and even the basics. I have completed the Developing Apps with GCP specialisation course via Coursera.
None of this tells me how to start in a basic way of running a python script and saving some output somewhere. It all throws me in at the deepend of building apps. I just want to test that I can run my code and models in GCP.
I apologise for the whiny and emotional nature of this post, but I am at my wits end. I am trying so hard to get this running and am so ******** lost.
Can someone please help / point me in the right direction.
Thank you,
J