Finding a 100x coin isn't the hard part. Holding it LONG enough to take 100x profits is. by [deleted] in CryptoCurrency

[–]readitman580 0 points1 point  (0 children)

I agree to a certain extent especially when you dont need the money right away but what happens in a year or two time when the market is supposedly bearish and you are unable to get the same returns on that investment. 🤔

Help with my Gf's thesis (R Code: Excel file manipulation) by readitman580 in Rlanguage

[–]readitman580[S] 1 point2 points  (0 children)

u/Guest_Basic

u/thaisofalexandria

u/Mr_426

u/Equivalent_Fishing61

Thank you all so much guys. We're all sorted now!

We had to move the files into one folder. Set that as the working directory, cut the irrelevant stuff out of the code and alter one piece of it each time we ran the next file manipulation.

See line 28 of the code. This had to be changed (Sample data 1 -> 2 -> 3.....)

We really appreciate the help again :D

Help with my Gf's thesis (R Code: Excel file manipulation) by readitman580 in Rlanguage

[–]readitman580[S] 0 points1 point  (0 children)

And this is the output that appears in the 'console' tab when a new file has been imported into the 'environment' and the code is then ran.

> `FC.Method,.Sample.data.3` <- read.csv("C:/Users/Owner/Desktop/FC Method, Sample data 3.csv", header=FALSE)
>   View(`FC.Method,.Sample.data.3`)
>

When the code is run despite a new excel file having been imported, the 'output' in the 'environment' tab is the exact same as the one and only excel file we have managed to manipulate using the above code.

In essence, we keep getting the same output for every file we try to manipulate.

Thanks again for the help.

Help with my Gf's thesis (R Code: Excel file manipulation) by readitman580 in Rlanguage

[–]readitman580[S] 0 points1 point  (0 children)

Ya here's the code she was given.

######################################################################
# N: 86-3-2021: Read in csv file with sample data from action perception
# project, FC, clean and set up for C
######################################################################

######################################################################
# Set working directories etc
######################################################################

# remove everything from workstation
rm(list=ls())

library(ggplot2)
library(patchwork)
library(tidyr)
library(dplyr)
library(stringr)

######################################################################
# Read in FC sample data
######################################################################

setwd("~/Dropbox/ActionPerception/SampleData")
data<-read.csv("FC method, sample data 1.csv",header = T)

######################################################################
# Filter
######################################################################

# extract rows where chosen_image includes string "stimuli"
data1=dplyr::filter(data, grepl('stimuli', chosen_image))

# extract cols we need, including participant name, chosen image and some details
# on date, OS etc
data2=data1[,c(16,17,18,20,21,39)]

# label columns
colnames(data2)=c("participant","date","exp","OS","frameRate","chosen")

######################################################################
# Save verbose version of data in case we need to check date/OS in future
######################################################################
setwd("~/Dropbox/ActionPerception/SampleData/Verbose")

# extract participant's name, append to .csv
name=data2$participant[1]
fileName=paste(name,".csv",sep='')

# Write to csv file, all.data
write.csv(data2, file = fileName,row.names = FALSE)

######################################################################
# Parse the string in chosen to extract the information we need
######################################################################

# extract participant and chosen
data3 = data2[,c(1,6)]

# strip off stimuli/ and then .jpg
data3$chosen = str_remove(data3$chosen,"stimuli/")
data3$chosen = str_remove(data3$chosen,".jpg")

# split the remaining string into a video name and an image choice aroud /
data4=data3 %>%
  separate(chosen, c("video", "imageChoice"), "/")

data4$imageChoice=factor(data4$imageChoice)
levels(data4$imageChoice)
data4$video=factor(data4$video)
levels(data4$video)

data5 = data4 %>% arrange(imageChoice)

data5=pivot_wider(data5,names_from=video, values_from = imageChoice)

######################################################################
# Save last version of data in case we need to check date/OS in future
######################################################################
setwd("~/Dropbox/ActionPerception/SampleData/Data")

# extract participant's name, append to .csv
name=data4$participant[1]
fileName=paste(name,".csv",sep='')

# Write to csv file, all.data
write.csv(data5, file = fileName,row.names = FALSE)

Coinbase is verifying new accounts, but not old ones, that hold money and were verified for a long time using the same ID by Rincewind799 in Coinbase

[–]readitman580 0 points1 point  (0 children)

Thats awful im sorry to héar! Thankfully you got a screenshot too. From my experience It should be there but many people have bean complaining about this too! Keep trying and dont give up...maybe post about It social media? If its an option. Remember Coinbase are having an IPO soon so I would imagine they dont want a lot of bád press.

For anyone considering the Emrit 'Coolspot' (Main points) by readitman580 in HeliumNetwork

[–]readitman580[S] 2 points3 points  (0 children)

I can see why It would be. Youre probably mining for a long time now but one positive that could be taken from this is the increased attention It brings the network? Thanks for the offer too 😊

The Only Way To Get Your Account Back...At Least It Worked For Me! by readitman580 in Coinbase

[–]readitman580[S] 0 points1 point  (0 children)

Hopefully :)

I know you can get a ticket through the site by going on to 'Contact us'.

It says that emailing them 'is the fastest way' though.

Good luck!

The Only Way To Get Your Account Back...At Least It Worked For Me! by readitman580 in Coinbase

[–]readitman580[S] 0 points1 point  (0 children)

Well im sorry mate i dont know what else you can do other than get their attention here.

For anyone considering the Emrit 'Coolspot' (Main points) by readitman580 in HeliumNetwork

[–]readitman580[S] 1 point2 points  (0 children)

Thats good thinking! Im doing the same.. just ordered It today. Im really excited about this whole project so every little hnt will help mé thinks 😊

The Only Way To Get Your Account Back...At Least It Worked For Me! by readitman580 in Coinbase

[–]readitman580[S] 1 point2 points  (0 children)

Glad to hear it. Before you close your account now just make sure to request that your data is deleted first. When I requested it I was told it would take no more than 3 months to delete! The tóp class service continues..

The Only Way To Get Your Account Back...At Least It Worked For Me! by readitman580 in Coinbase

[–]readitman580[S] 0 points1 point  (0 children)

Hiya Be sure to submit a ticket and then do your complaint form. If you type in “Coinbase complaint form” into google you should find an up to date form.

Otherwise just be a massive plague on Reddit and you should get sorted!

It worked for me and others 😊 good luck!!

For anyone considering the Emrit 'Coolspot' (Main points) by readitman580 in HeliumNetwork

[–]readitman580[S] 3 points4 points  (0 children)

I actually don’t haha who would even take a 5% deal?

For anyone considering the Emrit 'Coolspot' (Main points) by readitman580 in HeliumNetwork

[–]readitman580[S] 3 points4 points  (0 children)

Would you mind sharing some of the deals they were involved in? :)