The slicing tag has no wiki summary.
-1
votes
0answers
38 views
bash script file merge / piping and Python slicing
here's my issue :
I have 2 files generated in linux that has common output and were produced across multiple hosts with the same setup/configs. These files do some simple reporting on resource ...
0
votes
2answers
38 views
PSD slicing background with image
I got a PSD design for my website, and I'm having trouble coding the main banner.
This is the page
The top banner (with the image of the little people) doesn't show properly on some screen ...
0
votes
1answer
14 views
index last character of a raw_input string
I'm pretty desperate to get moving with my code and need help!
I am new to programming and have learned only recently how to slice.
I am practicing by writing my own code similar to pyg latin except ...
0
votes
0answers
12 views
Photoshop - Hiding layers for exporting slices
I want to set specific layers to be hidden when exporting the slice it is in.
More specifically, I have a banner slice with a headline within it. On the actual HTML page, that headline is actual text ...
0
votes
1answer
55 views
Slicers in SSRS
Need to Implementing Excel Like Slicer in SSRS :
Hi, I am very new to SSRS. Anyway to implement Excel like Slicers in SSRS ?
I have already tried this link ...
0
votes
2answers
32 views
Numpy subclass attribute slicing
Myclass is a numpy.ndarray subclass, intended to represent a set of images that change over time. To each image there is a set of metadata, like time, ambient temperature and camera temperature. ...
3
votes
2answers
55 views
Assign value to multiple slices in numpy
In Matlab, you can assign a value to multiple slices of the same list:
>> a = 1:10
a =
1 2 3 4 5 6 7 8 9 10
>> a([1:3,7:9]) = 10
a =
10 ...
-1
votes
1answer
31 views
How can I fix the page width to shrink to the screen size?
I sliced a PSD, and Photoshop puts the the code all in tables. I use it like that cuz I don't know much about coding. The website looks good, but I'm running with the problem that I have to scroll to ...
2
votes
2answers
52 views
Subsample 1-D array using 2-D indices in numpy
Background:
The data I'm using is being extracted from a netCDF4 object, which creates a numpy masked array at initialization, but does not appear to support the numpy reshape() method, making it only ...
0
votes
0answers
50 views
Why can I not change the values in a subset of cells from a DataFrame column?
I am indexing a subset of cells from a DataFrame column and attempting to assign a boolean True to said subset:
df['mycolumn'][df['myothercolumn'] == val][idx: idx + 25] = True
However, when I ...
1
vote
1answer
32 views
numpy: slicing and vectorized looping with 1d and 2d arrays
I want to vectorize the following loops for efficiency:
A = np.array([[0., 1., 0., 2.],
[1., 0., 3., 0.],
[0., 0., 0., 4.],
[2., 0., 4., 0.]]) # quadratic, ...
0
votes
3answers
50 views
Python array slicing — How can 2D array slicing be implemented?
I am wondering how 2D array slicing can be implemented in Python?
For example,
arr is an instance of a self-defined class 2D array.
if I want to enable 2D slicing syntax on this object like this:
...
0
votes
1answer
29 views
Evenly Distributed Slice of Django QuerySet (or Python list)
I'd like to get some values from a database and slice "n" of them, say to draw on a graph.
I'm starting with a Django QuerySet, but I don't think this is something I can reduce just via the ORM, so ...
-3
votes
4answers
78 views
Getting every X word from list [duplicate]
I have a list in python and I'm wanting to get all the words in the list but in blocks of x.
Example:
my_list = ["This" "is" "an" "example" "list" "hehe"]
counter = 3
Would need to output:
...
0
votes
1answer
34 views
how to get the last part of a string before a certain character?
i am trying to print the last part of a string before a certain character.
i'm not quite sure whether to use the string .split() method or string slicing or maybe something else.
here is some ...
0
votes
2answers
48 views
Can I use python slicing to access one “column” of a nested tuple?
I have a nested tuple that is basically a 2D table (returned from a MySQL query). Can I use slicing to get a list or tuple of one "column" of the table?
For example:
t = ...
3
votes
1answer
92 views
Numpy Array Slicing using a polygon in Matplotlib
This seems like a fairly straightforward problem, but I'm new to Python and I'm struggling to resolve it. I've got a scatter plot / heatmap generated from two numpy arrays (about 25,000 pieces of ...
2
votes
1answer
179 views
Understanding designing for the iphone images for Iphone5/4/3
I would like to understand the thought process/best practice for designing images for an IOS application.
For example I have a button setup as follows:
LoginButton = [[UIButton alloc] ...
8
votes
1answer
100 views
When can I pass a literal : to a function?
Under what circumstances can I pass a literal : to a Matlab function? I have discovered through experimentation, that sometimes, a literal : is passed on as the string ':', but in other situations, ...
5
votes
3answers
144 views
Polygon infill algorithm
I'm working on mesh slicing utility for 3d printing purposes. In general it should slice a 3d mesh model into 2d shapes (a number of polygons, probably with holes) and fill them with paths of ...
2
votes
2answers
86 views
Creating a slicing tree in R
Does anyone know if there is a package or simple way in R to create tree structures of the following form:
I am not looking for a way to create a nice plot like above. My biggest problem is finding ...
0
votes
2answers
36 views
Slicing Data From a Dictionary
I have code that will correctly return a list of xyz coordinates (or a list of xyz coordinates). My problem is that I want to directly access the individual numbers from the lists it returns, but I ...
0
votes
1answer
40 views
Confusion with `Array#[]` output in IRB
I was playing with Array#[] in my IRB to learn it. All my tries are below:
Below code is understood.
[2,3][0..1]
#=> [2, 3]
Why does the below code giving empty array?
[2,3][-1,0]
#=> []
...
-1
votes
3answers
86 views
list full of sentences and i need to slice and count a word from rest of list
I need to slice a word from from a sentence in a list and then cound how many times this word has been used in a file. I started by reading the file in a list. This put a whole sentence into one ...
0
votes
1answer
34 views
categorising lists by names and counting
i hav a list of lines like so
animals = ['i am a dog', 'i am a cat','i am a dog','i am a bird','i am a dog']
I need to categorise the list so that it categorises them by what animal they are. I ...
1
vote
2answers
90 views
How to compare elements in a list
I'm having some trouble with an algorithm (To find the max and min values), not the algorithm itself but the implementation, let me explain:
Let's say the list is n = [0,1,1,2,3,5,8,13,-1,99]; ...
1
vote
2answers
67 views
Django queryset: aggregate after slicing the queryset doesn't work
Car.objects.all() # 5 cars in db, every car costs 1000 $
Car.objects.all().aggregate(Sum("price")) # result: 5000
# aggregate only on a subset
Car.objects.all()[3:].aggregate(Sum("price")) # ...
2
votes
4answers
112 views
Slicing: Generates a list of lists [a,b,c,…z] = [z], [y,z]
Good evening everyone I was wondering it there a faster way to generate a list in the following form?
[a,b,c,…,z] → [[z], [y,z], [x,y,z], … , [a,b,…,y,z]]
I know that slicing is one of the best ...
2
votes
2answers
43 views
Does the header used to create a library have to be the same as the header using the library
After compiling the source to .o files and using "ar rcs libMyLibrarylib.a *.o" to make the library I am getting segfaults because I am using a header file with the member variables and private ...
1
vote
1answer
100 views
how to slice list in cython
I have a list in cython and want to slice it without using python object ( for speed ).
cdef int len = 100
cdef int *q
cdef int *r
q = <int *>malloc( len *cython.sizeof(int) )
r = q[50:]
...
0
votes
2answers
68 views
Javascript - slicing a file - need to modify javascript
I am new to javascripting and I have this piece of code. In this code, you can choose a file and then view it's first A-B bytes, B-C bytes, or the whole file.
Demonstration of this code at: ...
1
vote
2answers
91 views
How to use single colon when using variable for slicing?
I want to use a variable for storing a slicing expression.
This is what I try:
if variable is not None:
var = variable
elif self.__filter is not None:
var = self.__filter
...
1
vote
1answer
108 views
Pandas DatetimeIndex truncate error
I have a pandas dataframe df:
Out[16]:
<class 'pandas.core.frame.DataFrame'>
DatetimeIndex: 269850 entries, 2012-12-19 16:15:36 to 2012-12-20 14:36:55
Data columns:
X1 269850 non-null ...
1
vote
1answer
127 views
Interpreting ARM/MachO with LLVM for analysis and optimization?
I've spent a great deal of time reading the LLVM source tree. It is quite an impressive piece of engineering!
Anyhow, I have been trying to convert some MachO Arm Binaries that I have into the LLVM ...
2
votes
1answer
161 views
simplifying function
I have wrote this function, i think it would work but im not 100% sure. But im curious this is very complicated. Any way in which i can make this simpler?
The three parameters are times in the form ...
0
votes
1answer
81 views
Explicit Slicing a Derived Object
Have a nice day,
I have some class structure for the project I build for my company. At some point, I've seen a "usually unwanted" slicing of derived object could actually make my code efficient. ...
0
votes
1answer
50 views
Check for Nan values in the column of an ND-Array and Remove them
the code below was written to check for NaN values in a Python ND-Array column. If there is a NaN in either temparr1 or temparr2, we remove the corresponding row from both of them. The problem is, it ...
3
votes
3answers
57 views
Search a list for item(s)and return x number of surrounding items in python
I want to search a list for the occurence of a value (x) and return that value and a number, say 2, of the values above and below x in the index. Value x might appear in the list multiple time.
Input
...
3
votes
3answers
202 views
Fast numpy fancy indexing
My code for slicing a numpy array (via fancy indexing) is very slow. It is currently a bottleneck in program.
a.shape
(3218, 6)
ts = time.time(); a[rows][:, cols]; te = time.time(); print('%.8f' % ...
1
vote
1answer
164 views
Python, splicing lists, step and only extracting first character
I know how to do basic splicing. But I would like to know if it is possible to splice a list, returning every 10th element and only the last 2 characters of that element.
['1111',' 1112',' 1113',' ...
1
vote
2answers
364 views
Invalid literal for int() with base 10:''
I'm trying to teach myself python and I'm trying to create a remotely accessible server for GPIO connections for my Raspberry Pi. When I make a connection, the first input I send is whatever I ...
2
votes
2answers
142 views
slicing pandas DataFrame with negative index with ix() method
DataFrame.ix() does not seem to slice the DataFrame that I want when negative indexing is used.
I have a DataFrame object and want to slice the last 2 rows.
In [90]: df = ...
3
votes
2answers
71 views
Slicing in inherited objects
The following cases point out the slicing problem:
During an assignment:
http://stackoverflow.com/a/274634/640639
During a function call:
What is the slicing problem in C++?
My question is wouldnt ...
1
vote
3answers
98 views
How to combine lists together into one using slicing in python?
I am trying to combine 3 different lists into 1 list. I was able to do it with 2 lists, but when I added a third I started getting an error saying
ValueError: attempt to assign sequence of size 22 ...
0
votes
4answers
92 views
slicing a string from reverse in python
I had a string for example as below
i = 'backup_1.2012-12-19.tar.gz'
I need to fetch only the 2012-12-19.tar.gz from the string from the reverse(Because sometimes the string alters like ...
-2
votes
2answers
72 views
How can I get Python to print an entered message backwards? [duplicate]
Possible Duplicate:
Reverse a string in Python
Its been stumping me despite my initial thoughts that it would be simple.
Originally, I thought I would have have it print the elements of ...
1
vote
5answers
73 views
Slicing List Confusion in Python
Alright, I am super new to Python and something is bugging me about slicing lists. Why is it that I get [1, 3, 4] back when I am slicing [1] and [3] from this code?
z = [1, 2, 3, 4, 5]
del z[1], ...
0
votes
2answers
146 views
Debug assertion failed BLOCK_TYPE_IS_VALID(pHead->nblockuse) from Deconstructor
I am quite lost right now. I made a vector class. Everything works how I would like it to work, until the end. When the destructor is called I get an error message: Debug assertion failed ...
1
vote
3answers
237 views
Numpy/Python: Array iteration without for-loop
So it's another n-dimensional array question:
I want to be able to compare each value in an n-dimensional arrays with its neighbours. For example if a is the array which is 2-dimensional i want to be ...
1
vote
3answers
164 views
A Wheel of fortune game in python
In my game, the word is displayed as underscores at first, so for the word house, the output would be: _ _ _ _
I can't figure out how to replace these underscores with the correct letters that the ...






