python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Neo4J variable-length pattern
Is it possible to write a Cypher query with a variable-length patter, that specifies that nodes between the start and end node can only be nodes with a certain property?
I think that a query like the ...
DigitalJedi
Votes: 0
Answers: 2
I am writing a hangman style program but am having trouble checking if more than one character has been entered and the set word is guessed
I am using a while loop to check if the number of guesses is less than 10 and once 10 guesses has been made it will prompt you one last time to input the whole answer not just individual characters. I...
Austin Drake
Votes: 0
Answers: 1
Run function over dataframe with columns of differing length after dropna()
I am trying to apply the following function over each column in a dataframe:
def hurst_lag(x):
minlag = 200
maxlag = 300
lags = range(minlag, maxlag)
tau = [sqrt(std(subtract(x.dropna(...
SGriff
Votes: 0
Answers: 1
For loop continuing past set end point (matlab)
I have an array of matrices which are all different lengths. I want to compare the distance of each item in matrix 1 to the items in matrix 2 and so on. The for loops I've written below work well exce...
Susanna
Votes: 0
Answers: 2