Text matching to find various sub-groups that meet requirements in R

I have two data sets. The first is a list of specifications:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>x = c("a","b","c")
</code>
<code>x = c("a","b","c") </code>
x = c("a","b","c")

The second is a data frame where one column is a list of job titles and the second column is a list of specifications included in that job title:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)
</code>
<code>y = c("job1","job2", "job3","job4","job5","job6","job7") z = c("a","b","c","a, b","a,c","b,c","a, b, c" ) df = data.frame(y,z) </code>
y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)

I want to write code that will output all of the different combination of job titles whose specifications would include everything from the first list. For example: job1, job2, job3 together would meet the specifications, as would job1 and job6, or just job7.

I can get one specification, but not output all of the different combinations that would suffice.

4

Here is one way to do this:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)
# Start by making true/false columns for whether or not a job has a/b/c
df$a <- grepl('a',df$z)
df$b <- grepl('b',df$z)
df$c <- grepl('c',df$z)
# Every combination meeting your criteria will include at least one job with A, one with B, and one with C
a_jobs <- df$y[df$a]
b_jobs <- df$y[df$b]
c_jobs <- df$y[df$c]
# Make all combinations that meet your criteria
jobcombs <- expand.grid(a=a_jobs,b=b_jobs,c=c_jobs)
# Turn this into a list of vectors. Sort the vectors, and remove within-vector duplicates so (job4,job4,job3) becomes (job3,job4)
jobvecs <- apply(jobcombs,1,function(x) { return(sort(unique(x))) })
# Remove duplicate vectors from the list - there may be duplicates now that they're sorted and order doesn't make them different
# Eg. (job4,job6,job5) and (job5,job4,job6) are now both (job4,job5,job6) after sorting
jobvecs <- jobvecs[!duplicated(jobvecs)]
# Remove combinations where you don't actually need all three jobs to get to A+B+C, eg. job7/job1/job2
rownames(df) <- df$y # For easy indexing
check_all_necessary <- function(dat,jobs,critcols=c('a','b','c')) {
totals <- colSums(dat[jobs,critcols])
for(j in jobs) {
if(min(totals - unlist(dat[j,critcols])) > 0) { # All requirements still met without this job
return(F)
}
}
return(T)
}
keep <- list()
dontkeep <- list()
for(jvec in jobvecs) {
if(check_all_necessary(df,jvec)) {
keep[[length(keep) + 1]] <- jvec
} else {
dontkeep[[length(dontkeep) + 1]] <- jvec
}
}
</code>
<code>y = c("job1","job2", "job3","job4","job5","job6","job7") z = c("a","b","c","a, b","a,c","b,c","a, b, c" ) df = data.frame(y,z) # Start by making true/false columns for whether or not a job has a/b/c df$a <- grepl('a',df$z) df$b <- grepl('b',df$z) df$c <- grepl('c',df$z) # Every combination meeting your criteria will include at least one job with A, one with B, and one with C a_jobs <- df$y[df$a] b_jobs <- df$y[df$b] c_jobs <- df$y[df$c] # Make all combinations that meet your criteria jobcombs <- expand.grid(a=a_jobs,b=b_jobs,c=c_jobs) # Turn this into a list of vectors. Sort the vectors, and remove within-vector duplicates so (job4,job4,job3) becomes (job3,job4) jobvecs <- apply(jobcombs,1,function(x) { return(sort(unique(x))) }) # Remove duplicate vectors from the list - there may be duplicates now that they're sorted and order doesn't make them different # Eg. (job4,job6,job5) and (job5,job4,job6) are now both (job4,job5,job6) after sorting jobvecs <- jobvecs[!duplicated(jobvecs)] # Remove combinations where you don't actually need all three jobs to get to A+B+C, eg. job7/job1/job2 rownames(df) <- df$y # For easy indexing check_all_necessary <- function(dat,jobs,critcols=c('a','b','c')) { totals <- colSums(dat[jobs,critcols]) for(j in jobs) { if(min(totals - unlist(dat[j,critcols])) > 0) { # All requirements still met without this job return(F) } } return(T) } keep <- list() dontkeep <- list() for(jvec in jobvecs) { if(check_all_necessary(df,jvec)) { keep[[length(keep) + 1]] <- jvec } else { dontkeep[[length(dontkeep) + 1]] <- jvec } } </code>
y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)

# Start by making true/false columns for whether or not a job has a/b/c
df$a <- grepl('a',df$z)
df$b <- grepl('b',df$z)
df$c <- grepl('c',df$z)

# Every combination meeting your criteria will include at least one job with A, one with B, and one with C
a_jobs <- df$y[df$a]
b_jobs <- df$y[df$b]
c_jobs <- df$y[df$c]

# Make all combinations that meet your criteria
jobcombs <- expand.grid(a=a_jobs,b=b_jobs,c=c_jobs)

# Turn this into a list of vectors. Sort the vectors, and remove within-vector duplicates so (job4,job4,job3) becomes (job3,job4)
jobvecs <- apply(jobcombs,1,function(x) { return(sort(unique(x))) })

# Remove duplicate vectors from the list - there may be duplicates now that they're sorted and order doesn't make them different
# Eg. (job4,job6,job5) and (job5,job4,job6) are now both (job4,job5,job6) after sorting
jobvecs <- jobvecs[!duplicated(jobvecs)]

# Remove combinations where you don't actually need all three jobs to get to A+B+C, eg. job7/job1/job2
rownames(df) <- df$y # For easy indexing

check_all_necessary <- function(dat,jobs,critcols=c('a','b','c')) {
  totals <- colSums(dat[jobs,critcols])
  for(j in jobs) {
    if(min(totals - unlist(dat[j,critcols])) > 0) { # All requirements still met without this job
      return(F)
    }
  }
  return(T)
}

keep <- list()
dontkeep <- list()
for(jvec in jobvecs) {
  if(check_all_necessary(df,jvec)) {
    keep[[length(keep) + 1]] <- jvec
  } else {
    dontkeep[[length(dontkeep) + 1]] <- jvec
  }
}

And some quick checks of the results:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>check_comb <- function(dat,jobs,critcols=c('a','b','c')) {
return(dat[jobs,critcols])
}
lapply(keep,check_comb,dat=df)
lapply(dontkeep)
</code>
<code>check_comb <- function(dat,jobs,critcols=c('a','b','c')) { return(dat[jobs,critcols]) } lapply(keep,check_comb,dat=df) lapply(dontkeep) </code>
check_comb <- function(dat,jobs,critcols=c('a','b','c')) {
  return(dat[jobs,critcols])
}
lapply(keep,check_comb,dat=df)
lapply(dontkeep)

Here are examples of what got discarded in dontkeep because not all jobs in the combination were necessary to meet the a+b+c requirement:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>[[1]]
a b c
job2 FALSE TRUE FALSE
job3 FALSE FALSE TRUE
job4 TRUE TRUE FALSE
[[2]]
a b c
job2 FALSE TRUE FALSE
job3 FALSE FALSE TRUE
job5 TRUE FALSE TRUE
</code>
<code>[[1]] a b c job2 FALSE TRUE FALSE job3 FALSE FALSE TRUE job4 TRUE TRUE FALSE [[2]] a b c job2 FALSE TRUE FALSE job3 FALSE FALSE TRUE job5 TRUE FALSE TRUE </code>
[[1]]
         a     b     c
job2 FALSE  TRUE FALSE
job3 FALSE FALSE  TRUE
job4  TRUE  TRUE FALSE

[[2]]
         a     b     c
job2 FALSE  TRUE FALSE
job3 FALSE FALSE  TRUE
job5  TRUE FALSE  TRUE

In the first combination, job2 is not necessary, you could meet requirements with job3+job4 only. In the second combination, job3 is not necessary, you could meet requirements with job2+job5 alone.

Here are all of the final kept combinations, collapsed to pasted strings with sapply(keep,paste,collapse='_'):

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>"job1_job2_job3" "job3_job4" "job2_job5" "job4_job5" "job5_job6"
"job4_job6" "job1_job6" "job7"
</code>
<code>"job1_job2_job3" "job3_job4" "job2_job5" "job4_job5" "job5_job6" "job4_job6" "job1_job6" "job7" </code>
"job1_job2_job3"  "job3_job4"  "job2_job5"  "job4_job5"  "job5_job6"
"job4_job6"  "job1_job6"  "job7"

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Text matching to find various sub-groups that meet requirements in R

I have two data sets. The first is a list of specifications:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>x = c("a","b","c")
</code>
<code>x = c("a","b","c") </code>
x = c("a","b","c")

The second is a data frame where one column is a list of job titles and the second column is a list of specifications included in that job title:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)
</code>
<code>y = c("job1","job2", "job3","job4","job5","job6","job7") z = c("a","b","c","a, b","a,c","b,c","a, b, c" ) df = data.frame(y,z) </code>
y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)

I want to write code that will output all of the different combination of job titles whose specifications would include everything from the first list. For example: job1, job2, job3 together would meet the specifications, as would job1 and job6, or just job7.

I can get one specification, but not output all of the different combinations that would suffice.

4

Here is one way to do this:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)
# Start by making true/false columns for whether or not a job has a/b/c
df$a <- grepl('a',df$z)
df$b <- grepl('b',df$z)
df$c <- grepl('c',df$z)
# Every combination meeting your criteria will include at least one job with A, one with B, and one with C
a_jobs <- df$y[df$a]
b_jobs <- df$y[df$b]
c_jobs <- df$y[df$c]
# Make all combinations that meet your criteria
jobcombs <- expand.grid(a=a_jobs,b=b_jobs,c=c_jobs)
# Turn this into a list of vectors. Sort the vectors, and remove within-vector duplicates so (job4,job4,job3) becomes (job3,job4)
jobvecs <- apply(jobcombs,1,function(x) { return(sort(unique(x))) })
# Remove duplicate vectors from the list - there may be duplicates now that they're sorted and order doesn't make them different
# Eg. (job4,job6,job5) and (job5,job4,job6) are now both (job4,job5,job6) after sorting
jobvecs <- jobvecs[!duplicated(jobvecs)]
# Remove combinations where you don't actually need all three jobs to get to A+B+C, eg. job7/job1/job2
rownames(df) <- df$y # For easy indexing
check_all_necessary <- function(dat,jobs,critcols=c('a','b','c')) {
totals <- colSums(dat[jobs,critcols])
for(j in jobs) {
if(min(totals - unlist(dat[j,critcols])) > 0) { # All requirements still met without this job
return(F)
}
}
return(T)
}
keep <- list()
dontkeep <- list()
for(jvec in jobvecs) {
if(check_all_necessary(df,jvec)) {
keep[[length(keep) + 1]] <- jvec
} else {
dontkeep[[length(dontkeep) + 1]] <- jvec
}
}
</code>
<code>y = c("job1","job2", "job3","job4","job5","job6","job7") z = c("a","b","c","a, b","a,c","b,c","a, b, c" ) df = data.frame(y,z) # Start by making true/false columns for whether or not a job has a/b/c df$a <- grepl('a',df$z) df$b <- grepl('b',df$z) df$c <- grepl('c',df$z) # Every combination meeting your criteria will include at least one job with A, one with B, and one with C a_jobs <- df$y[df$a] b_jobs <- df$y[df$b] c_jobs <- df$y[df$c] # Make all combinations that meet your criteria jobcombs <- expand.grid(a=a_jobs,b=b_jobs,c=c_jobs) # Turn this into a list of vectors. Sort the vectors, and remove within-vector duplicates so (job4,job4,job3) becomes (job3,job4) jobvecs <- apply(jobcombs,1,function(x) { return(sort(unique(x))) }) # Remove duplicate vectors from the list - there may be duplicates now that they're sorted and order doesn't make them different # Eg. (job4,job6,job5) and (job5,job4,job6) are now both (job4,job5,job6) after sorting jobvecs <- jobvecs[!duplicated(jobvecs)] # Remove combinations where you don't actually need all three jobs to get to A+B+C, eg. job7/job1/job2 rownames(df) <- df$y # For easy indexing check_all_necessary <- function(dat,jobs,critcols=c('a','b','c')) { totals <- colSums(dat[jobs,critcols]) for(j in jobs) { if(min(totals - unlist(dat[j,critcols])) > 0) { # All requirements still met without this job return(F) } } return(T) } keep <- list() dontkeep <- list() for(jvec in jobvecs) { if(check_all_necessary(df,jvec)) { keep[[length(keep) + 1]] <- jvec } else { dontkeep[[length(dontkeep) + 1]] <- jvec } } </code>
y = c("job1","job2", "job3","job4","job5","job6","job7")
z = c("a","b","c","a, b","a,c","b,c","a, b, c" )
df = data.frame(y,z)

# Start by making true/false columns for whether or not a job has a/b/c
df$a <- grepl('a',df$z)
df$b <- grepl('b',df$z)
df$c <- grepl('c',df$z)

# Every combination meeting your criteria will include at least one job with A, one with B, and one with C
a_jobs <- df$y[df$a]
b_jobs <- df$y[df$b]
c_jobs <- df$y[df$c]

# Make all combinations that meet your criteria
jobcombs <- expand.grid(a=a_jobs,b=b_jobs,c=c_jobs)

# Turn this into a list of vectors. Sort the vectors, and remove within-vector duplicates so (job4,job4,job3) becomes (job3,job4)
jobvecs <- apply(jobcombs,1,function(x) { return(sort(unique(x))) })

# Remove duplicate vectors from the list - there may be duplicates now that they're sorted and order doesn't make them different
# Eg. (job4,job6,job5) and (job5,job4,job6) are now both (job4,job5,job6) after sorting
jobvecs <- jobvecs[!duplicated(jobvecs)]

# Remove combinations where you don't actually need all three jobs to get to A+B+C, eg. job7/job1/job2
rownames(df) <- df$y # For easy indexing

check_all_necessary <- function(dat,jobs,critcols=c('a','b','c')) {
  totals <- colSums(dat[jobs,critcols])
  for(j in jobs) {
    if(min(totals - unlist(dat[j,critcols])) > 0) { # All requirements still met without this job
      return(F)
    }
  }
  return(T)
}

keep <- list()
dontkeep <- list()
for(jvec in jobvecs) {
  if(check_all_necessary(df,jvec)) {
    keep[[length(keep) + 1]] <- jvec
  } else {
    dontkeep[[length(dontkeep) + 1]] <- jvec
  }
}

And some quick checks of the results:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>check_comb <- function(dat,jobs,critcols=c('a','b','c')) {
return(dat[jobs,critcols])
}
lapply(keep,check_comb,dat=df)
lapply(dontkeep)
</code>
<code>check_comb <- function(dat,jobs,critcols=c('a','b','c')) { return(dat[jobs,critcols]) } lapply(keep,check_comb,dat=df) lapply(dontkeep) </code>
check_comb <- function(dat,jobs,critcols=c('a','b','c')) {
  return(dat[jobs,critcols])
}
lapply(keep,check_comb,dat=df)
lapply(dontkeep)

Here are examples of what got discarded in dontkeep because not all jobs in the combination were necessary to meet the a+b+c requirement:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>[[1]]
a b c
job2 FALSE TRUE FALSE
job3 FALSE FALSE TRUE
job4 TRUE TRUE FALSE
[[2]]
a b c
job2 FALSE TRUE FALSE
job3 FALSE FALSE TRUE
job5 TRUE FALSE TRUE
</code>
<code>[[1]] a b c job2 FALSE TRUE FALSE job3 FALSE FALSE TRUE job4 TRUE TRUE FALSE [[2]] a b c job2 FALSE TRUE FALSE job3 FALSE FALSE TRUE job5 TRUE FALSE TRUE </code>
[[1]]
         a     b     c
job2 FALSE  TRUE FALSE
job3 FALSE FALSE  TRUE
job4  TRUE  TRUE FALSE

[[2]]
         a     b     c
job2 FALSE  TRUE FALSE
job3 FALSE FALSE  TRUE
job5  TRUE FALSE  TRUE

In the first combination, job2 is not necessary, you could meet requirements with job3+job4 only. In the second combination, job3 is not necessary, you could meet requirements with job2+job5 alone.

Here are all of the final kept combinations, collapsed to pasted strings with sapply(keep,paste,collapse='_'):

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>"job1_job2_job3" "job3_job4" "job2_job5" "job4_job5" "job5_job6"
"job4_job6" "job1_job6" "job7"
</code>
<code>"job1_job2_job3" "job3_job4" "job2_job5" "job4_job5" "job5_job6" "job4_job6" "job1_job6" "job7" </code>
"job1_job2_job3"  "job3_job4"  "job2_job5"  "job4_job5"  "job5_job6"
"job4_job6"  "job1_job6"  "job7"

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật