Matthew Lundberg

less info
10,812 reputation
1924
bio website None
location St. Louis, MO
age
visits member for 1 year, 2 months
seen 3 mins ago
stats profile views 411

Education: MA Mathematics UM-St.Louis

Languages: Proficient in C++, Java, C, Perl, Assembly Language (x86, AMD64, Itanium, AXP), Currently learning R

Operating Systems: Linux, OpenVMS, Windows Server

Interests: Discrete analysis (Wavelets, FFT, DCT, etc), Object-Oriented Programming, Template Meta-Programming, Crash and Dump Analysis, Profiling and Other External Measurements of Software Performance


2h
comment How do I create a variable based on selected characters from row.names?
@user1824929 edited.
2h
revised How do I create a variable based on selected characters from row.names?
added 469 characters in body
2h
answered How do I create a variable based on selected characters from row.names?
1d
revised Creating a 3D matrix with R?
Improve indenting.
1d
revised Changing the order of vector in terms of anthother in R
added 305 characters in body
1d
comment Changing the order of vector in terms of anthother in R
@Stedy While I would be shocked if this question is not a duplicate, that question isn't the same at all.
1d
revised Changing the order of vector in terms of anthother in R
Best to not create an object named `c`.
1d
answered Changing the order of vector in terms of anthother in R
2d
comment Why lag in r is not working for matrix?
Try ?tsp. And look at the attributes returned by lag(B). Lagging a time series does not shift the entries; it modifies the "index."
2d
reviewed Approve suggested edit on Wrapper cannot instantiate an abstract class
2d
comment Why lag in r is not working for matrix?
You don't see the tsp attribute? tsp(lag(B)) returns c(0,2,1).
2d
comment Why lag in r is not working for matrix?
lag does work. As it is intended to be used for a time series, it changes the attributes.
2d
answered Why lag in r is not working for matrix?
2d
reviewed Edit suggested edit on vftable : per-appdomain symbol should not be marked with __declspec(dllexport)
2d
revised vftable : per-appdomain symbol should not be marked with __declspec(dllexport)
added code block
2d
revised Generate multiple lattice plots on a grid using lapply in R
Changed point color.
2d
comment Plot shows up and disappears fast in R
Please produce a minimal example that demonstrates the problem. Be sure to explain how you're running the code. See here: stackoverflow.com/q/5963269
2d
revised Sum column if other column value equals any value in a list
added 31 characters in body
2d
answered Sum column if other column value equals any value in a list
2d
comment Generate multiple lattice plots on a grid using lapply in R
lapply is designed to iterate over a list applying a function, where each return value is used as an entry in a returned list. If you aren't returning a value, for is more appropriate.