I want to calculate the distance between two points and label them. The problem is that the code doesn’t work on more than 1 line. When there is 1 row, the program shows me result which I want:
This is an error when there is more than 1 line : “cannot convert the series to <class ‘float’>”
This is my code:
JavaScript
x
42
42
1
data = pd.read_csv (r'C:UsersDSAijDocumentsProjekt.csv')
2
data.head()
3
4
choices_1 = ['short','medium','long']
5
6
if not ((data['x_start'] < data['x_end']) & (data['y_start'] < data['y_end'])).empty:
7
conditions_1 = [
8
((math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_end'])-(data['y_start']))**2)) < 5),
9
((math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_end'])-(data['y_start']))**2)) >= 5 and
10
(math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_end'])-(data['y_start']))**2)) < 10),
11
((math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_end'])-(data['y_start']))**2)) > 10)]
12
13
data['Pass'] = np.select(conditions_1, choices_1)
14
15
# if not ((data['x_start'] < data['x_end']) & (data['y_start'] > data['y_end'])).empty:
16
# conditions_2 = [
17
# ((math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_start'])-(data['y_end']))**2)) < 5),
18
# ((math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_start'])-(data['y_end']))**2)) >= 5 and
19
# (math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_start'])-(data['y_end']))**2)) < 10),
20
# ((math.sqrt((((data['x_end']) - (data['x_start']))**2) + ((data['y_start'])-(data['y_end']))**2)) > 10)]
21
22
# data['Pass'] = np.select(conditions_2, choices_1)
23
24
# if not ((data['x_start'] > data['x_end']) & (data['y_start'] < data['y_end'])).empty:
25
# conditions_3 = [
26
# ((math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_end'])-(data['y_start']))**2)) < 5),
27
# ((math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_end'])-(data['y_start']))**2)) >= 5 and
28
# (math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_end'])-(data['y_start']))**2)) < 10),
29
# ((math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_end'])-(data['y_start']))**2)) > 10)]
30
31
# data['Pass'] = np.select(conditions_3, choices_1)
32
33
# if not ((data['x_start'] > data['x_end']) & (data['y_start'] > data['y_end'])).empty:
34
# conditions_4 = [
35
# ((math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_start'])-(data['y_end']))**2)) < 5),
36
# ((math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_start'])-(data['y_end']))**2)) >= 5 and
37
# (math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_start'])-(data['y_end']))**2)) < 10),
38
# ((math.sqrt((((data['x_start']) - (data['x_end']))**2) + ((data['y_start'])-(data['y_end']))**2)) > 10)]
39
40
#data['Pass'] = np.select(conditions_4, choices_1)
41
42
The part that is commented out is when the x_end is greater than x_start etc.
This is my data frame
Advertisement
Answer
Try this
JavaScript
1
25
25
1
import pandas as pd
2
import numpy as np
3
4
#create a function that calculates what you want (i.e distance in this case)
5
def dist(x0, x1, y0, y1):
6
return ((x1 - x0)**2 + (y1 - y0)**2)**(1/2)
7
8
# Your dataframe (please provide this yourself next time)
9
df = pd.DataFrame({'x_start':[24, 24, 24, 5],
10
'x_end':[12, 36, 12, 12],
11
'y_start':[35, 35, 95, 87],
12
'y_end':[57, 57, 57, 57]})
13
14
#this calculates the distance
15
df['Pass'] = df.apply(lambda x:
16
dist(x['x_start'], x['x_end'], x['y_start'], x['y_end']), axis=1)
17
18
#this will apply your conditions
19
df['Pass'] = np.select(
20
[df['Pass']<5, (df['Pass']<10) & (df['Pass']>=5), df['Pass']>=10],
21
['short','medium','long'],
22
default=np.nan)
23
df
24
25