Ejemplo n.º 1
0
def gincs(wed, y, permutations=999, segment=False):
    if segment:
        # segment wed and y
        # get new wed and extract new y
        raise NotImplementedError

    w = networkw.w_links(wed)
    mi = ps.Moran(y, w, permutations=permutations)
    return mi
Ejemplo n.º 2
0
def gincs(wed, y, permutations=999, segment=False):
    if segment:
        # segment wed and y
        # get new wed and extract new y
        raise NotImplementedError

    w = networkw.w_links(wed)
    mi = ps.Moran(y, w, permutations=permutations)
    return mi
Ejemplo n.º 3
0
def lincs(wed, y, permutations=999, segment=False):
    if segment:
        # segment wed and y
        # get new wed and extract new y
        raise NotImplementedError

    w = networkw.w_links(wed)
    # lisa from PySAL
    lisa = ps.Moran_Local(y, w, permutations=permutations)
    return lisa
Ejemplo n.º 4
0
def lincs(wed, y, permutations=999, segment=False):
    if segment:
        # segment wed and y
        # get new wed and extract new y
        raise NotImplementedError

    w = networkw.w_links(wed)
    # lisa from PySAL
    lisa = ps.Moran_Local(y, w, permutations=permutations)
    return lisa
Ejemplo n.º 5
0
 def w_links(self):
     return networkw.w_links(self)
Ejemplo n.º 6
0
 def w_links(self):
     return networkw.w_links(self)