Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
184 views

Why is the terminology of labels and levels in factors so weird?

An example of a non-settable function would be labels. You can only set factor labels when they are created with the factor function. There is no labels<- function. Not that 'labels' and 'levels' ...
12
votes
6answers
1k views

nth ugly number

Numbers whose only prime factors are 2, 3 or 5 are called ugly numbers. Example: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... 1 can be considered as 2^0. I am working on finding nth ugly number. Note ...
10
votes
0answers
176 views

Counting (Number theory / Factors) [migrated]

so I'm stuck with this counting problem which goes like this: I've an expression: T = (N!) * (N!) / D where, D ∈[ 1 - N! ] i.e. D takes all values from 1 to N! and I've to count the number ...
3
votes
4answers
66 views

How would I go about using multiple arraylists to filter factors of a number?

Okay, so say i want to find factors of a number a. I know how to do that, using a for loop and an arraylist. My problem is that (and i have no idea how to go about this) I want the factors in ...
3
votes
2answers
548 views

Find sum of factors

Why does this code return the sum of factors of a number? In several Project Euler problems, you are asked to compute the sum of factors as a part of the problem. On one of the forums there, someone ...
2
votes
1answer
97 views

R: how do I output the factor level from a for loop rather than the index?

I have a data frame that I am running a Monte Carlo simulation on, using for loops, to generate a simulated distribution. As I am testing the simulation code, I am just accessing the first observation ...
2
votes
2answers
181 views

Prime factors generation C++

I realize that this is a pretty common question, but I want to know what I've been doing wrong and how can I fix it. Project Eular's Prime Factorization Question has been bugging me. Here is what I ...
2
votes
4answers
141 views

F# Create list of multiples of x?

I want to create a list that is the multiples of a number. For example [2; 4; 6; 8; 10] would be the multiples of 2 between 0 and 10. How would I dynamically create such a list of the multiples of ...
2
votes
2answers
103 views

Need to know if this a Unique way to divide?

Few months ago I had asked a question on an "Algorithm to find factors for primes in linear time" in StackOverflow. In the replies i was clear that my assumptions where wrong and the Algorithm cannot ...
2
votes
1answer
129 views

factor with 6 levels out of a continuous variable

I have a continuous variable of frequency that ranges from 0 to 6.115053. I need to split that in 6 levels, my analysis will be more readable this way. I have tried: frequency.new <- ...
2
votes
2answers
1k views

Reshape data frame to convert factors into columns in R

I have a data frame where one particular column has a set of specific values (let's say, 1, 2, ..., 23). What I would like to do is to convert from this layout to the one, where the frame would have ...
1
vote
1answer
89 views

R machine learning packages to deal with factors with a large number of levels

I'm trying to do some machine learning stuff that involves a lot of factor-type variables (words, descriptions, times, basically non-numeric stuff). I usually rely on randomForest but it doesn't work ...
1
vote
2answers
360 views

Factor a quadratic polynomial in Python

THIS IS NOT FOR HOMEWORK Since factoring a quadratic equation in my head just happens, and has done that since I learned it - how would I go about starting to write a quadratic factorer in Python?
1
vote
4answers
109 views

Using third party jars - Factors to consider

What are the factors that I need to consider when I include a third party jar in my application? I have listed a few below. Is there anything else that I am missing? And how does the Memory footprint ...
0
votes
3answers
91 views

Finding factors of a given integer

So I have something like this down... int f = 120; for(int ff=1;ff<=f;ff++){ while (f%ff != 0){ } Is there anything wrong with my loop to find factors? I'm really confused as ...
0
votes
2answers
53 views

How to renumber a series into parallel sets

I'm working in R. I have a dataframe, df that looks like this: > str(exp) 'data.frame': 691200 obs. of 19 variables: $ groupname: Factor w/ 8 levels "rowA","rowB",..: 1 1 1 1 1 1 1 1 1 1 ... ...
0
votes
3answers
122 views

Factorizing largest number

here is sample code public static decimal factorization(decimal num, decimal factor) { if (num == 1) { return 1; } if ((num % ...
0
votes
1answer
71 views

identifying or coding unique factors using R

I would like to create a new variable,litter, to indicate each sow or litter in different farrowing dates (fdate). Each litter is to be numbered from 1 to N with an increament of 1 as shown in the ...
0
votes
1answer
276 views

How to find all the prime factors in a unsigned long long integer?

I have a assignment to find all the prime factors of a number... I need to write a function that takes a number and tells me all the prime factors of the number. For example: n=350 prime factors:2 ...
0
votes
4answers
923 views

R Programming: Plotting Two Factors on the same Graph

Quick question, Say i have 2 factors and i want to graph them on the same plot, both factors have the same levels. s1 <- c(rep("male",20), rep("female", 30)) s2 <- c(rep("male",10), ...
0
votes
2answers
190 views

how to create the frame data structure with columns from csv data in R?

Below are the first five rows of the imported data in R: data[1:5,] user event_date day_of_week 1 00002781A2ADA816CDB0D138146BD63323CCDAB2 2010-09-04 Saturday 2 ...
0
votes
3answers
823 views

Python - Check if numbers in list are factors of a number

I have a list of numbers (integers) (say, from 1 to 10). They're not necessarily consecutive, but they are in ascending order. I've prompted the user multiple times to enter a choice of the ...
0
votes
5answers
906 views

Get factors of a number

I need to get two factors ( x, y ) of a given number ( n ) such that: x * y <= n x * y should be as close to n as possible x and y should be as close to each other as possible. Examples: n = ...
-5
votes
3answers
641 views

How do I factor integers using Perl?

I want split integers into their factors. For example, if the total number of records is: 169 - ( 13 x 13 times) 146 - ( 73 x 2 times) 150 - ( 50 x 3 times) 175 - ( 25 x 7 times) 168 - ( 84 x 2 ) ...