The nested-lists tag has no wiki summary.
2
votes
1answer
58 views
Putting incomplete nested lists in a rectangular ndarray
In Python (also using numpy) I have a list of lists of lists, with each list being different lengths.
[
[
["header1","header2"],
["---"],
[],
...
0
votes
3answers
79 views
How to merge Lists in Python?Merging python lists (0,1,2) & (A,B,C) to get (0A, 1B, 2C)
I have two lists that I need to merge, but the normal merging questions that I saw didn't seem to help.
l1 = (0,1,2,3)
l2 = ('A','B','C','D')
And I need it to become
((0,'A'), (2,'B'), (3,'C'))
-2
votes
0answers
33 views
Programming a (medical) database in scheme [closed]
Me and my friend have a problem regarding a database project in scheme we're currently working on, we're creating a database that's supposed to help with giving a patient a correct/or close to correct ...
0
votes
2answers
41 views
combinding a list of lists into new lists in python
I have a list of lists
list_of_lists[['front','stuff'],['back1,'stuff'],['back3','stuff'], ...['back...', 'stuff']]
I want to take the front list and append to each of the back lists:
...
0
votes
0answers
27 views
jquery filter tree made with nested ul li
By following an article I can search nested ul li list. Nothing worng with it. JSFIDDLE HERE
I am trying to implement this code in nested ul li tree list.For that I am using jquery.treeview plugin. ...
4
votes
2answers
71 views
Get element from sequence in clojure
I understand that lists and vectors in Clojure can be used almost interchangeably in most situations. Here is a simple case that surprised me
(nth [2 4] 0) ;=> 2
(nth '(2 4) 0) ;=> 2
(get [2 ...
2
votes
2answers
22 views
Nested List to Single Table (Merge By Column Name?)
I have a nested list that looks like this:
dput(head(tempList))
structure(list(Species = c("RandArcBo1", "RandArcBo1", "RandArcBo1",
"RandArcBo1", "RandArcBo1", "RandArcBo1", "RandArcBo1", ...
0
votes
2answers
43 views
How to fill an array with a function, and use that array outside the function?
I'am working in CodeIgniter (CI), and trying to create a nested set of category items for a dropdown list. To create a dropdown box, in CI you need to echo form_dropdown('name', $array, $selectedID).
...
4
votes
3answers
59 views
How to copy a list which will not be changed in function call in Python
I was working on these functions (see this):
def removeFromList(elementsToRemove):
def closure(list):
for element in elementsToRemove:
if list[0] != element:
...
0
votes
3answers
30 views
Nested Map or equivalent to store triple
I have to store values into a list/map which contains three values:
size | amount | description
2,34 | 4 | "I'm a long String"
1,14 | 2 | "I'm another long String"
So I ...
0
votes
0answers
19 views
Search for element list inside list in python
My objective is to search for the word after "IDENTIFIER" in the list. I have input as list which can have list inside list inside list or just list inside list. Basically we have to find how many ...
0
votes
1answer
135 views
Sencha Touch 2 Nested list not displayed
I'm trying to display NestedList with json on my hard disk, but it is not displayed. What am I doing wrong? No bugs in Chrome. (Chrome open with Applications / Google \ Chrome.app / Contents / MacOS / ...
0
votes
0answers
20 views
How to implement a sortable list, with a nested sortable span
I am trying to implement a sortable list (ul) with a nested sortable spans within each (li).
The functional goal is to design a tool that allows input of text (specific number of lines and character ...
1
vote
2answers
58 views
Python: Nested List Modification
I have a nested list of paired data in the format:
mylist = [['item1', 'some other stuff', 'value1'],['item1', 'some other stuff', 'value2'],['item2', 'some other stuff', 'value3'],['item2', 'some ...
0
votes
3answers
45 views
Comparing value from a nested dictionaries and list
I want to compare values from two variables (dictionary and list). Dictionary has a nested construct, so I have to loop over the all items.
I discovered simple solution, but I am pretty sure that I ...
0
votes
1answer
44 views
How to disable all links inside a nested ul, except for the ones at the lowest level?
Let's say I have a list, like this:
<ul>
<li><a href="Sitepages/Introduction.aspx">Introduction</a>
<ul>
<li><a ...
0
votes
1answer
159 views
Sencha touch nested list no data
I am new for sencha touch. I using mvc method. Please see my code below
Main.js
Ext.define('test.view.Main', {
extend: 'Ext.tab.Panel',
xtype: 'main',
requires: [
'Ext.TitleBar',
...
0
votes
0answers
35 views
Renumbering nested sortable lists after ordering
I have a nested list that is sortable using nestedSortable: https://github.com/mjsarfatti/nestedSortable/issues/11
<div>
<button class="btn" id="renumberList">Renumber</button>
...
0
votes
1answer
175 views
Empty nested list display
Based on newly created Sencha Touch 2 app as it is learned here.
Then I'd like to add my nested list - hierarchical menu tree and found that doesn't matter - my store inline or my store read from json ...
0
votes
2answers
48 views
List in a List (Associations)
Trying to further my own understanding, I'm replication a simple database - and having trouble understanding the following;
I have 2 classes Town and People. A town owns many instances of People and ...
0
votes
2answers
100 views
swap nested list in haskell
I want to swap a list like (1,3,[2,4],5,[7,12,[14]])
I know that in haskell types of a list should be the same so I confused how can I do this.
Should I use another data structure?
or I should ...
2
votes
2answers
68 views
Python: List appending issue
I am having a logical error of sorts and I can not seem to pick it out. Here is what I have:
Document = 'Sample1'
locationslist = []
thedictionary = []
userword = ['the', 'a']
filename = 'Sample1'
...
1
vote
2answers
196 views
nested list in haskell
I'm trying to make a list that contains sub lists, like [1,2,[3,4],[3,[4,5]]].
it seems like I should define a new type. I tried:
data NestedList a = Int a | List [NestedList a]
but i think its ...
0
votes
0answers
93 views
How to get parent scope from Nested list box seleted item?
Hi am using xmal file given below.I have two fields like image and titles.I have one top level list box and each item has own listbox.I have to tracking the selection changes for the inner list and in ...
1
vote
1answer
102 views
List paging in nestedlist
Is it possible to use the List Paging Plugin in a Nested List? When I place the code directly, the app won't work anymore.
My Code:
requires: ...
4
votes
1answer
176 views
is there a way to pass nested initializer lists in C++11 to construct a 2D matrix?
Imagine you have a simple matrix class
template <typename T = double>
class Matrix {
T* data;
size_t row, col;
public:
Matrix(size_t m, size_t n) : row(m), col(n), data(new T[m*n]) {}
...
0
votes
2answers
79 views
Good way to initialize a multidimensional list with empty elements?
For my tile game Im making I choose to use a 4D nested list system.
First dimension - layer (background and foreground but there might be others)
Second and third dimension - a 2D grid, a classic ...
0
votes
1answer
52 views
Comprehension list on nested list (list of lists)
It is allowed the use of a comprehension list on a "list of lists"?
I would like to extract a list from a nested list.
I did try this:
def main():
a = ['1','2','3']
b = ['4','5','6']
c = ...
2
votes
5answers
104 views
Finding maximum of Nth elements of a list of lists in C#
I have a list of lists in C#, where each sublist has three doubles, representing a 3D point:
{{x1, y1, z1},
{x2, y2, z2},
{x3, y3, z3}}
I want to find the 3D bounding box of this dataset, and ...
-1
votes
3answers
107 views
Working With Nested Lists LISP
I'm relatively new to lisp and am curious as to the best method for working with a nested list in the following context:
So, I have the following function:
(defun get-p0 (points)
(loop for ...
2
votes
1answer
74 views
Solve folding paper challenge
Ok so I'm trying to solve this logical question in a pythonic way, but I'm not very good. Here goes:
You have a piece of paper with a list of numbers on it like so:
1 2 3 4 | 5 6 7 8
If you fold ...
1
vote
1answer
167 views
How to use <ui:repeat> to iterate over a nested list?
Using JSF 2.0, I need to display a table wherein each row contains a link which opens a popup. I have two models: A which has id and List<B> properties and B which has id and name properties. In ...
0
votes
1answer
39 views
nestedLists[2][4] = “a” sets the 5th member of EVERY list in the list to “a” [duplicate]
I've been learning Python 3 over the past few weeks. I've run into a snag:
Logically, the line nestedLists[2][4] = "a" should set the 5th member of the 3rd list in this list of lists to "a." ...
2
votes
3answers
74 views
Inserting in order to a nested list
Say I had a nested list like so:
nested_list=[[123,'Aaron','CA'],[124,'Bob','WY'],[125,'John','TX']]
insert_me=[122,'George','AL']
The list is currently sorted (In alphabetical order) by the middle ...
2
votes
1answer
338 views
Sencha Touch 2: Give a different itemTpl to nested list leaf nodes
In my nested list I have 2 levels. Currently it shows a standard list. When you click an item it takes you to a list of that item's children. Those children are the leaf nodes. So when you tap one of ...
0
votes
1answer
71 views
Convert Triple Level List Structure into data.frame
I have a triple level list, the dput is below. How can I convert this into a data.frame? Output should be a 6x23 data.frame and preferably with the correct column names. The number of rows is the ...
1
vote
2answers
52 views
How do you store objects in python and how you access them
during our school project we have a task to implement a working "Login System" using python.
I have done almost everything but I keep struggling with two of the functions implemented in the program. I ...
8
votes
3answers
219 views
efficient algorithm instead of looping
I have a data set where each samples has a structure similar to this
X=[ [[],[],[],[]], [[],[]] , [[],[],[]] ,[[][]]]
for example:
X=np.array([ [ [1,2,3], [2,4,5] ,[2,3,4] ] , [ [5,6], [6,6] ] , ...
3
votes
1answer
76 views
Creating tree structured list from nested list
I have a nested list:
l = [[1], [2,3], [2,4], [2,5], [2,5,6], [2,5,7], [2,5,8],[2,5,8,9], [10],[11,12]]
and I need the list to be in a tree structured nested list, for example:
l = [{1:[], ...
3
votes
3answers
74 views
Check if a list is nested or not
Is there a "built-in"/efficient and robust way to check if list objects are nested or not?
To clarify my understanding of the term nested:
Flat or not-nested list
x.1 <- list(
a=TRUE,
...
0
votes
1answer
220 views
use Jquery - in a nested list of parent/child check boxes - check or uncheck parent based on child state
If you check a child in the list, all the parents should become checked.
If you un-check a child in the list and there are other children that ARE checked the parent should remain checked.
finaly, ...
1
vote
1answer
96 views
Unraveling nested unordered lists and displaying horizontally in IE/Chrome/FF
I've been googling this for about a week, and I can't find a solution that works on all three browsers. I'm trying to find a way to output nested unordered lists horizontally using cross-platform css. ...
0
votes
3answers
82 views
Recursive access to elements in list of lists in R
I'm using the Annotation package of R to get GO terms related to certain genes. Using getGOParents(term) function the result is:
> x = getGOParents("GO:0035556")
$`GO:0035556`
...
0
votes
2answers
65 views
Append to List Nested in Dictionary
I am trying to append to lists nested in a dictionary so I can see which letters follow a letter. I have the desired result at the bottom I would like to get. Why is this not matching up?
word = ...
0
votes
1answer
74 views
Logic for creating nested lists
I'm interpreting a text file with nested lists in the following format
- todo
- clean kitchen
- do dishes
- sweep floor
- cook dinner
- defrost fish
- shopping
- milk
- eggs
...
0
votes
3answers
64 views
Using 'in' to test for part of one sublist in another in Python
Newbie here trying to search for part of one sublist within another sublist.
list_1 = [[1, 2, 9], [4, 5, 8]]
list_2 = [[1, 2, 3], [4, 5, 6], [1, 2, 5]]
for item in list_1:
for otherItem in ...
1
vote
1answer
248 views
Sencha Touch - Nested List - Refreshing a list item. (Using getItemTextTpl to se Template )
I have a nested list with a template by using getItemTextTpl. Template is simple it checks for a flag and if true it shows a button on a list item. If false show no button.
When on the list item I ...
0
votes
1answer
722 views
Sencha Touch: Hide a toolbar button in nested lists?
Complete Code is here
I have the following Sencha App Nested List which comprise of a toolbar button.
Whenever I click on any list item, I need to remove the Button which says "Tab Bar" in the ...
4
votes
5answers
95 views
Alternative for 'in' operator for nested lists
If I want to find something in a list in python I can use the 'in' operator:
list = ['foo', 'bar']
'foo' in list #returns True
But what should I do if I want to find something in a nested list?
...
1
vote
3answers
94 views
Eliminate element of every list within a nested list
I would like to eliminate the third element of every list within a nested list.
E.g.,
lst = { {1, 0, 0}, {1, 1, 1}, {1, 1, 4} }
So it would become
{ {1, 0}, {1, 1}, {1, 1} }
How should ...








