Questions tagged [hierarchical]

For issues relating to arranging data and/or resources in a hierarchy.

A hierarchy is an arrangement of items (objects, names, values, categories, resources, etc.) in which the items are represented as being "above," "below," or "at the same level as" one another. Abstractly, a hierarchy is simply an ordered set or an acyclic directed graph.

A hierarchy can link entities either directly or indirectly, and either vertically or horizontally. The only direct links in a hierarchy, insofar as they are hierarchical, are to one's immediate superior or to one of one's subordinates, although a system that is largely hierarchical can also incorporate alternative hierarchies. Indirect hierarchical links can extend "vertically" upwards or downwards via multiple links in the same direction, following a path. All parts of the hierarchy which are not linked vertically to one another nevertheless can be "horizontally" linked through a path by traveling up the hierarchy to find a common direct or indirect superior, and then down again.

568 questions
6
votes
5 answers

Why LDAP is not popular?

We start to use LDAP and I wonder why LDAP is not that popular? I read that it has faster reads than database, however slower writes. EDIT: Its the first time i use LDAP and i have been programming in enterprise for sometime now. That is the reason…
IAdapter
  • 62,595
  • 73
  • 179
  • 242
6
votes
1 answer

HTS package: how to specify a network-like hierarchy of forecasts?

I'm trying to use the hts package for hierarchical forecasting in order to predict together the different scales of a water network, in order to have reconciled forecasts. The water network is composed of flowmeters, that measure flow in positive or…
agenis
  • 8,069
  • 5
  • 53
  • 102
6
votes
0 answers

Spring hierarchical context

I have following problem: I'm trying to implement Spring in existing ear application (using Jboss as App Server and Hibernate as ORM). The ear application consists of war(basically few simple servlets), har(hibernate archive which has only the data…
Stefan
  • 335
  • 1
  • 3
  • 6
6
votes
1 answer

Human-readable URLs: preferably hierarchical too?

In a now migrated question about human-readable URLs I allowed myself to elaborate a little hobby-horse of mine: When I encounter URLs like http://www.example.com/product/123/subpage/456.html I always think that this is an attempt on creating…
jensgram
  • 31,109
  • 6
  • 81
  • 98
6
votes
1 answer

Hierarchical faceted search example with Solr

Question Where can I find a complete example that shows how hierarchical faceted search works from indexing the documents to retrieving search results? My research so far Stackoverflow has a few posts, but all of them only address certain aspects of…
Lernkurve
  • 20,203
  • 28
  • 86
  • 118
6
votes
3 answers

Out of memory error while using clusterdata in MATLAB

I am trying to cluster a Matrix (size: 20057x2).: T = clusterdata(X,cutoff); but I get this error: ??? Error using ==> pdistmex Out of memory. Type HELP MEMORY for your options. Error in ==> pdist at 211 Y =…
Hossein
  • 40,161
  • 57
  • 141
  • 175
6
votes
3 answers

Passing different forecasting method to hierarchical time series forecast in R?

I have a hierarchical time series, the bottom level series of which all exhibit intermittent demand. It seems advantageous to use Hyndman's HTS package for optimal combination within the hierarchy. It also seems advantageous to use Kourentzes' MAPA…
user1569317
  • 2,436
  • 3
  • 14
  • 17
6
votes
2 answers

SQL Server: querying hierarchical and referenced data

I'm working on an asset database that has a hierarchy. Also, there is a "ReferenceAsset" table, that effectively points back to an asset. The Reference Asset basically functions as an override, but it is selected as if it were a unique, new asset.…
haggercody
  • 63
  • 5
5
votes
3 answers

Getting root parent

+--------+---------+-----------+ | id | title | parent_id | +--------+---------+-----------+ | 1 | Lvl-1 | null | +--------+---------+-----------+ | 2 | Lvl-2 | null | +--------+---------+-----------+ | 3 | Lvl-11 …
slier
  • 6,511
  • 6
  • 36
  • 55
5
votes
1 answer

Scala: Matching empty sequence against Nil

Why does the following: val x: Seq[Any] = Vector.empty x match { case Nil => 1 case _ => 2 } where Vector.empty internally equates to: private[immutable] val NIL = new Vector[Nothing](0, 0, 0) override def empty[A]: Vector[A] = NIL match Nil and…
Maths noob
  • 1,684
  • 20
  • 42
5
votes
1 answer

Zookeeper Overall data size limit

I am new to Zookeeper, trying to understand if it fits for my use case. I have 10 million hierarchical data, which I want to store in Zookeeper. 10M key-value pair with size of the key and value will be 1KB each. So the total data size is…
Deepak Agrawal
  • 136
  • 1
  • 7
5
votes
3 answers

Can a subgrid be exported in angular ui-grid

I'm using the grid from http://ui-grid.info/ in a project. I've created a hierarchical grid, which works nicely, but when I do an export, it only exports the data from the top-level grid. This is by design and is standard functionality for the…
Matt Eno
  • 687
  • 5
  • 25
5
votes
1 answer

Read csv file with many named column labels with pandas

I'm brand new to pandas for python. I have a data file that has multiple row labels (per row) and column labels (per column) like the following data of observation counts for 3 different animals (dog,bat,ostrich) at multiple recording times (monday…
ejmoli
  • 145
  • 1
  • 9
5
votes
1 answer

d3.js traverse hierarchical data

In d3.js, how do you use .data on this kind of hierarchy? data = [{node : 1, subProperties : ["A", "B", "C"]} ,{node : 2, subProperties : ["D", "E", "F"]} ] d3.select("body") .data(data) .append("g") //for the node (1 and 2) .??? …
babyjet
  • 137
  • 1
  • 2
  • 5
5
votes
1 answer

'hierarchical' => true not bringing up the parent selector

I want to display the parent select so I can select the parent for layout purposes. This was un answered in the WordPress forum. It may be a missing or coming feature. Has anyone got this to work? register_post_type('foo', array( 'hierarchical'…
Dean Oakley
  • 5,366
  • 2
  • 18
  • 14
1 2
3
37 38