DBSCAN Flashcards

1
Q

What the density based do ?

A

locates cluster even if they do not belong regions of high density, and in any
separates outliers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the two parameters in DBScan

A

MinPts

šœ€(epsilon):

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is šœ€(epsilon) ?

A

šœ€(epsilon): Maximum radius of the neighborhood for some point pāž¢ Neighborhood of p: points within a radius of from a point p

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is minpts?

A

Minimum number of points in an neighborhood of a point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Give me the Characterization of points

A

Core point
Border point
Noise point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What the diff between core and border ?

A

Core has more than specific number of minPts

Border has fewer than minPts but has core in region

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Direct density reachable

A

The link between core and any point in region of core point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Density-reachable

A

The link between core to another point in diffrent cluster but most be connect to other core points to access to the point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Density-connected

A

The link between two point in different cluster but most be between them core point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why the epsilon important?

A

If is very small their will not core point

If very large the results in all point forming single cluster

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How determining EPS epsilon?

A

Support have minPts=4 then the EPS is the distance of 4 neighbour

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The pors of DBScan

A

Does not require the number of clusters a priori.
ā–Ŗ it can capture arbitrary shape cluster
ā–Ŗ it can identify (noises)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Cons of DBScan

A

1-Fails in case of varying density clusters.
2- Does not work well of high dimensional data.
3-Sensitive to Parameters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly