Questions tagged [multi-level]

529 questions
2
votes
1 answer

Returning subset of each group from a pandas groupby object

I have the multilevel dataframe that looks like: date_time name note value list index 1 0 2015-05-22 05:37:59 Tom 129 False 1 2015-05-22 05:38:59 Tom …
user5421875
2
votes
1 answer

what is a model matrix / design matrix

I stumbeled upon the stats::model.matrix function in R. In the description it sais that it would create a design matrix. It gives me a weired number of rows, which does not correspend to neither the number of observations in my data, nor the number…
vanao veneri
  • 970
  • 2
  • 12
  • 31
2
votes
0 answers

Reverse array at n level only

I'm looking for a good way to reverse multi-dimensional array in javascript but at a specific level (n) only, like: [ [[2,1], [4,2], [6,3], [3,4]], [[5,1], [1,2], [3,3], [4,4]], [[4,1], [7,2], [1,3], [2,4], ['monkey',…
2
votes
4 answers

jQuery multilevel submenu

Ok this might be pretty simple but can’t make it… What i want to make is a sub menu with multilevel support Right now step by step: hide all “li” with “ul” Show subnav by adding Class “Show-subnav” to the li > ul when it is clicked Problem: All…
user3265000
2
votes
1 answer

Iterate multilevel collection in jsp

I found difficulties in iterating a multilevel collection on jsp. @Entity @Table(name = "Establishment") public class Establishment extends Basis { @Column(name = "code") private Long code; // will be used for link to the entity if the…
barbariania
  • 499
  • 8
  • 19
2
votes
0 answers

How to model multiplicative effect of parameters/fit data at individual predictor level

I am having difficulty in fitting a model on data. Basically, I have data about the evaluation of phenotypic property (i.e. hard) of 65 palm trees by 5 judges. As an evaluation scheme, each judge provides score to each sample. For 3 judges sample…
maddy
  • 21
  • 1
2
votes
2 answers

2nd selector hover not working in multi level depth menus

I've struggled now for several days trying to make this work - and I'm beginning to see things floating past my eyes that have not yet been created. The problem is that I need to build a multi-level navigation system with ZERO Java or JQuery using…
SeanAchim
  • 23
  • 5
2
votes
3 answers

Extended Choice Parameter plugin Multi-Level Select

OK, so I downloaded this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+plugin And select Multi-Level Single Select as the type of parameters. The problem is that when I have multiple parameters selected and I want to…
user3155659
  • 49
  • 1
  • 4
2
votes
2 answers

MYSQL Multi level comments using drupal method (ie: 1.1.1) with count

I would like to set up a multi level comments that will look like that : 1 this is the first comment (with 2 replies) 1.1 first reply (with 2 replies) 1.1.1 first reply of first 1.1.2 second reply of first 1.2 second reply…
Bobby Shark
  • 1,074
  • 2
  • 17
  • 33
2
votes
0 answers

Mysql : Get articles from multi level category?

Assume that I have a article_category tree like this: GrandPa Cate |______ Parent Cate 1 (article 1, article2) |______ Parent Cate 2 |______|_____ Child Cate 1 (article 3, article 4) |______|_____ Child Cate 2 (article 5) Tables: Category id |…
Nấm Lùn
  • 1,277
  • 6
  • 28
  • 48
2
votes
1 answer

css only horizontal subnav

I am building a CSS only two-level horizontal navigation bar with relative sub-navigation to the parent. All menu items are inline. Dependent upon the classes 'right' or 'left', the sub-nav aligns to the parent. This is what I've managed to…
Curtis
  • 43
  • 1
  • 7
2
votes
1 answer

C# Linq Joining tables with multi-level

I am trying to query the 3rd level table ef_staff table 3 times to get 3 diff staff objects for each row. How to translate this in LINQ? SELECT a.a_appraisalid, a.a_year, c.s_staffName, c2.s_staffName, c3.s_staffName FROM ef_appraisal a,…
2
votes
1 answer

move from one scene to another with cocos 2D in android (multi-level)

I want to make a game with levels.that's means in the first level the user have to kill some targets if he wins he pass to the next level with new targets and new background. I use this game tuto! i have these classes ----> package…
wael
  • 444
  • 4
  • 11
2
votes
2 answers

CakePHP multilevel models

I've been trying to figure out how to save multi-level models in CakePHP for some time now, but can't seem to find a solution. I have three models. Survey, Question, and Choice. Survey hasMany Question - so Question belongsTo Survey Question…
czt
  • 33
  • 5
1
vote
3 answers

How to obtain values from a multilevel HashMap stored in an ArrayList?

Title says all. Sample code: ArrayList> data = new ArrayList>(); HashMap parentHash = new HashMap(); HashMap childHash = new HashMap
Aerial
  • 1,185
  • 4
  • 20
  • 42